-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (52 loc) · 1.65 KB
/
setup.py
File metadata and controls
62 lines (52 loc) · 1.65 KB
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
"""Learning MF project setup script."""
import re
from pathlib import Path
from setuptools import find_packages, setup
PATH = Path(__file__).parent.absolute()
DOCLINES = (__doc__ or "").split("\n")
CLASSIFIERS = """\
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
"""
def parse_requirements(file_name):
"""
from:
http://cburgmer.posterous.com/pip-requirementstxt-and-setuppy
"""
requirements = []
with open(file_name, "r") as f:
for line in f:
if re.match(r"(\s*#)|(\s*$)", line):
continue
if re.match(r"\s*-e\s+", line):
requirements.append(re.sub(r"\s*-e\s+.*#egg=(.*)$", r"\1", line).strip())
elif re.match(r"\s*-f\s+", line):
pass
else:
requirements.append(line.strip())
return requirements
REQUIREMENTS = parse_requirements(PATH / "requirements.txt")
setup(
name="brain",
version="0.1.0",
packages=find_packages(),
description=DOCLINES[0],
long_description="\n".join(DOCLINES[2:]),
long_description_content_type="text/markdown",
keywords=["Quant"],
classifiers=[_f for _f in CLASSIFIERS.split("\n") if _f],
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
python_requires=">=3.9",
install_requires=REQUIREMENTS,
include_package_data=True,
package_data={"brain": ["tools/data/*"]},
zip_safe=False,
entry_points={
"console_scripts": [
"wq-brain = brain.main:main",
"wq-update = brain.update:update_data",
],
},
)