-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (47 loc) · 1.48 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
"""Build and installation script for CodeScribe."""
# standard libraries
import re
from setuptools import setup, find_packages
# get long description from README
with open("README.rst", mode="r") as readme:
long_description = readme.read()
with open("code_scribe/__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 dependencies - click, docker, singularity
DEPENDENCIES = []
with open("requirements/core.txt", mode="r", encoding="ascii") as core_reqs:
DEPENDENCIES = core_reqs.read()
setup(
name=metadata["__pkgname__"],
version=metadata["__version__"],
author=metadata["__authors__"],
description=metadata["__description__"],
license=metadata["__license__"],
packages=find_packages(where="./"),
package_dir={"": "./"},
#package_data={
# "": [
# "resources/Dockerfile.base",
# "resources/Dockerfile.root",
# "resources/Dockerfile.user",
# ]
#},
scripts=["code_scribe/code-scribe"],
include_package_data=True,
long_description=long_description,
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
],
install_requires=DEPENDENCIES,
)