-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.29 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
"""Build and installation script for figaro."""
# standard libraries
import re
from setuptools import setup, find_packages
# get long description from README.rst
with open("README.rst", mode="r") as readme:
long_description = readme.read()
# get package metadata by parsing __meta__ module
with open("figaro/__meta__.py", mode="r") as source:
content = source.read().strip()
metadata = {
key: re.search(key + r'\s*=\s*[\'"]([^\'"]*)[\'"]', content).group(1)
for key in [
"__pkgname__",
"__version__",
"__authors__",
"__license__",
"__description__",
]
}
# core dependancies
DEPENDENCIES = ["click", "toml", "boxsdk", "joblib", "tqdm", "dill", "pyyaml"]
setup(
name=metadata["__pkgname__"],
version=metadata["__version__"],
author=metadata["__authors__"],
description=metadata["__description__"],
license=metadata["__license__"],
packages=find_packages(where="./"),
package_dir={"": "./"},
scripts=[
"figaro/scripts/figaro",
],
include_package_data=True,
long_description=long_description,
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
],
install_requires=DEPENDENCIES,
)