-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 1.13 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
#!/usr/bin/env python
"""Command line interface for translation workflow"""
import os
from setuptools import setup, find_packages
from twcli 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='workflow-cli',
version=APP_VERSION,
description="Command line interface for translation workflow",
platforms=["Linux"],
packages=find_packages(),
author="Sundeep Anand",
author_email="[email protected]",
maintainer="[email protected]",
url="https://transtats.org",
license="Apache License 2.0",
install_requires=REQUIRE,
test_suite="tests.twcli_test_suit",
scripts=["transtats"],
entry_points='''
[console_scripts]
transtats=twcli:entry_point
''',
classifiers=[
'License :: OSI Approved :: Apache License 2.0 (Apache-2.0)',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
],
)