aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 35e50dde7ebe087f5f96db63e547d47bc39ee1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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",
    ],
)