-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 771 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 771 Bytes
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
#!/usr/bin/env python
"""PyANCP - Python ANCP (RFC 6320) Client and Library
"""
from setuptools import setup, find_packages
version = '0.1.7'
setup(name='PyANCP',
version=version,
author='Christian Giese (GIC-de)',
url='https://github.com/GIC-de/PyANCP',
license='MIT',
description='Python ANCP (RFC 6320) Client and Library',
long_description=open('README.rst').read(),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
packages=find_packages(),
zip_safe=True,
include_package_data=True,
install_requires=['future'],
)