forked from 20c/vaping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·56 lines (48 loc) · 1.77 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
45
46
47
48
49
50
51
52
53
54
55
from setuptools import find_packages, setup
def read_file(name):
with open(name) as fobj:
return fobj.read().strip()
long_description = read_file("README.md")
version = read_file("Ctl/VERSION")
requirements = read_file("Ctl/requirements.txt").split('\n')
test_requirements = read_file("Ctl/requirements-test.txt").split('\n')
setup(
name='vaping',
version=version,
author='20C',
author_email='code@20c.com',
description='vaping is a healthy alternative to smokeping!',
long_description=long_description,
long_description_content_type="text/markdown",
license='LICENSE',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
],
packages = find_packages(),
include_package_data=True,
url='https://github.com/20c/vaping',
download_url='https://github.com/20c/vaping/%s' % version,
install_requires=requirements,
test_requires=test_requirements,
entry_points={
'console_scripts': [
'vaping=vaping.cli:cli',
]
},
zip_safe=True,
)