-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (30 loc) · 1017 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
import os
import setuptools
def requirements():
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt'), encoding='utf-8') as f:
return f.read().splitlines()
setuptools.setup(
name="ratsnlp",
version="0.0.9992",
license='MIT',
author="ratsgo",
author_email="[email protected]",
description="tools for Natural Language Processing",
long_description=open('README.md').read(),
url="https://github.com/ratsgo/ratsnlp",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={
'ratsnlp.nlpbook.classification': ['*.html'],
'ratsnlp.nlpbook.ner': ['*.html'],
'ratsnlp.nlpbook.qa': ['*.html'],
'ratsnlp.nlpbook.paircls': ['*.html'],
'ratsnlp.nlpbook.generation': ['*.html'],
},
install_requires=requirements(),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
)