-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (40 loc) · 1.4 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
#!/usr/bin/env python
"""transtats command line interface"""
import os
from setuptools import setup, find_packages
from tscli import APP_VERSION
with open(
os.path.join(os.path.dirname(__file__), "requirements.txt"), 'rb'
) as require:
REQUIRE = require.read().decode('utf-8').splitlines() + ['setuptools']
setup(
name='transtats-cli',
version=APP_VERSION,
description="Command line interface for transtats",
platforms=["Linux"],
packages=find_packages(),
author="Sundeep Anand",
author_email="[email protected]",
url="http://transtats.org",
license="Apache License 2.0",
install_requires=REQUIRE,
test_suite="tests.tscli_test_suit",
scripts=["transtats"],
data_files=[('/usr/share/man/man1', ['docs/man/transtats.1']),
('/usr/share/bash-completion/completions',
['conf/bash-completion/transtats.bash'])],
# entry_points='''
# [console_scripts]
# transtats=tscli:entry_point
# ''',
classifiers=[
'License :: OSI Approved :: Apache License 2.0 (Apache-2.0)',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)