From c22aedfb52c291ab791c3dfe6209c69047157cac Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Thu, 10 Dec 2020 20:40:14 +0100 Subject: initial --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..35e50dd --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +from distutils.core import setup +import setuptools + +setup( + name='phpipam', + version='0.0.0-dev', + author="Jonas Gunz", + description="phpIPAM API implementation", + packages=setuptools.find_packages(), + license='MIT license', + long_description=open('README.md').read(), + long_description_content_type="text/markdown", + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT", + "Operating System :: OS Independent", + ], +) + -- cgit v1.2.3