forked from grammarly/gector
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (25 loc) · 930 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
from setuptools import find_packages, setup
def requirements():
req_path = 'requirements.txt'
with open(req_path) as f:
reqs = f.read().splitlines()
return reqs
setup(
name='gector',
url='https://github.com/grammarly/gector',
author='grammarly',
packages=find_packages(),
version='0.1',
license='Apache-2.0 License',
description='GECToR – Grammatical Error Correction: Tag, Not Rewrite',
long_description=open('README.md').read(),
install_requires=requirements(),
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache-2.0 License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix',
'Programming Language :: Python :: 3.8',
]
)