forked from GRAAL-Research/deepparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
91 lines (75 loc) · 3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import os
import subprocess
from setuptools import setup, find_packages
current_file_path = os.path.abspath(os.path.dirname(__file__))
def get_readme():
readme_file_path = os.path.join(current_file_path, "README.md")
with open(readme_file_path, "r", encoding="utf-8") as f:
return f.read()
def get_version():
version_file_path = os.path.join(current_file_path, "version.txt")
with open(version_file_path, "r", encoding="utf-8") as f:
version = f.read().strip()
try:
sha = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii").strip()
except Exception: # pylint: disable=broad-except
sha = "Unknown"
if os.getenv("DEEPPARSE_RELEASE_BUILD") != "1":
version += ".dev1"
if sha != "Unknown":
version += "+" + sha[:7]
return version
def write_version_python_file(version):
version_python_file = os.path.join(current_file_path, "deepparse", "version.py")
with open(version_python_file, "w", encoding="utf-8") as f:
f.write(f"__version__ = {repr(version)}\n")
def main():
readme = get_readme()
version = get_version()
print("Building version", version)
write_version_python_file(version)
packages = find_packages()
setup(
name="deepparse",
version=version,
author="Marouane Yassine, David Beauchemin",
author_email="marouane.yassine.1@ulaval.ca, david.beauchemin.5@ulaval.ca",
url="https://deepparse.org/",
download_url="https://github.com/GRAAL-Research/deepparse/archive/v" + version + ".zip",
license="LGPLv3",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
packages=packages,
install_requires=[
"numpy",
"torch",
"bpemb",
"gensim>=4.0.0",
"requests",
"fasttext",
"pymagnitude-light",
"poutyne",
"pandas",
],
python_requires=">=3.7",
description="A library for parsing multinational street addresses using deep learning.",
long_description=readme,
long_description_content_type="text/markdown",
extras_require={"colorama": "colorama>=0.4.3"},
)
if __name__ == "__main__":
main()