-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
36 lines (32 loc) · 956 Bytes
/
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
from setuptools import setup, find_packages
import sys
if sys.version_info<(3,):
sys.exit("Sorry, Python 3 is required for Caver")
with open("README.md", "r") as f:
readme = f.read()
with open("requirements.txt", "r") as f:
reqs = [l for l in f.read().splitlines() if l]
print(reqs)
setup(
name="brief",
version="0.0.1",
description="Text Summarizer",
long_description=readme,
author='Guokr Inc.',
author_email='[email protected]',
url="https://github.com/guokr/Anutshell",
packages=find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
),
entry_points={
'console_scripts': [
# 'trickster_train=trickster::train',
]
},
install_requires=reqs
)