forked from zhanzecheng/Time_NLP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (24 loc) · 849 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
import pathlib
import setuptools
from setuptools import setup
HERE = pathlib.Path(__file__).parent
with open(HERE / "README.md", encoding="utf-8") as f:
README = f.read()
with open("requirements.txt") as f:
install_requires = [line for line in f if line and line[0] not in "#-"]
setup(
name="ChineseTimeNLP",
version="3.0.0",
keywords=("time", "nlp", "time nlp"),
url="https://github.com/BudyLab/ChineseTimeNLP",
author="BudyLab",
author_email="[email protected]",
long_description_content_type="text/markdown",
description="将中文时间表达词转为相应的时间",
long_description=README,
license="MIT Licence",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=install_requires,
classifiers=["Programming Language :: Python :: 3.7"],
)