-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 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
from setuptools import setup, find_packages
import os
with open("requirements.txt") as f:
reqs = f.read().splitlines()
print(reqs)
with open("tag.txt") as f:
version = f.read()
setup(
name="terms-tools",
version=version,
zip_safe=False,
author="stephane schneider",
include_package_data=True,
package_data={"": ["*.jsonl", "*.tsv", "*.json", "*.txt", "*.ini", "nlptools"]},
author_email="[email protected]",
maintainer="stephane",
maintainer_email="[email protected]",
keywords="nlp scientific package Python for computationnal terminology",
classifiers=["Topic :: natural langage processsing", "Topic :: Documentation"],
packages=find_packages(),
entry_points={
"console_scripts": ["terms_tools = nlptools.terms_toolsCLI:console_scripts_main" ]
},
install_requires = reqs,
description="Bibliotheque de composants python NLP",
long_description=open(os.path.join(os.path.dirname(__file__), "README.md")).read(),
license="GPL V3",
url="https://github.com/stephane54/terms-tools.git",
platforms="ALL",
python_requires=">=3.6",
)