-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (43 loc) · 1.64 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).parent
requirements_path = here / "requirements" / "prod.txt"
def read_requirements(path):
try:
with path.open(mode="rt", encoding="utf-8") as fp:
return list(filter(None, (line.split("#")[0].strip() for line in fp)))
except IndexError:
raise RuntimeError(f"{path} is broken")
setup(
name="lazytext",
python_requires=">=3.7.0",
setup_requires=["setuptools_scm"],
install_requires=read_requirements(requirements_path),
use_scm_version={
"version_scheme": "guess-next-dev",
"local_scheme": "dirty-tag",
"write_to": "src/lazytext/_repo_version.py",
"write_to_template": 'version = "{version}"\n',
"relative_to": __file__,
},
include_package_data=True,
package_data={},
packages=find_packages(where="src"),
package_dir={"": "src"},
entry_points={"console_scripts": ["lazytext = lazytext.cli:entrypoint"]},
author="lazytext",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing :: General",
],
url="https://github.com/jdvala/lazytext",
)