aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2019-01-05 17:21:36 +0100
committerMatěj Cepl <mcepl@cepl.eu>2019-01-05 17:21:36 +0100
commit9a90d29b671325e6b05acfdb1e2976848f6411a8 (patch)
treead61e342a18d94bf2a1204a26924058af2c28c1d
parent54981106fdada59b6f34cd25e0e4b468a13fcaa0 (diff)
downloaddlp_check_version_PyPI-9a90d29b671325e6b05acfdb1e2976848f6411a8.tar.gz
Add a basic setup.py
-rw-r--r--setup.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..7913695
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,31 @@
+import os
+import sys
+
+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.0.1",
+ 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.3",
+ "Programming Language :: Python :: 3.4",
+ "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"
+)