1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as inf:
return "\n" + inf.read().replace("\r\n", "\n")
setup(
name='dlp_check_version_PyPI',
version="0.1.0",
description='Check available versions of the upstream packages on PyPI',
author=u'Matěj Cepl',
author_email='mcepl@cepl.eu',
url='https://gitlab.com/mcepl/dlp_check_version_PyPI',
py_modules=['dlpcvp'],
long_description=read("README.rst"),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
test_suite="test"
)
|