-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (35 loc) · 1.35 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
version = "2018.6.0"
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='calpack',
version=version,
description='Packets in Python made Simple',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/KronosKoderS/CalPack',
download_url='https://github.com/KronosKoderS/CalPack/tarball/v' + version,
author='KronoSKoderS',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities',
],
test_suite="tests.get_tests",
packages=find_packages(exclude=['tests', 'docs'])
)