-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
76 lines (71 loc) · 2.01 KB
/
setup.py
File metadata and controls
76 lines (71 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import os
from setuptools import setup
def getversion():
head = '__version__ = "'
tail = '"\n'
with open(os.path.join("buildpy", "vx", "__init__.py")) as fp:
for l in fp:
if l.startswith(head) and l.endswith(tail):
return l[len(head) : -len(tail)]
raise Exception("__version__ not found")
setup(
name="buildpy",
version=getversion(),
description="Make in Python",
url="https://github.com/kshramt/buildpy",
author="kshramt",
packages=[
"buildpy.v1",
"buildpy.v2",
"buildpy.v3",
"buildpy.v4",
"buildpy.v5",
"buildpy.v5._convenience",
"buildpy.v5._log",
"buildpy.v5._tval",
"buildpy.v5.exception",
"buildpy.v5.resource",
"buildpy.v6",
"buildpy.v6._convenience",
"buildpy.v6._log",
"buildpy.v6._tval",
"buildpy.v6.exception",
"buildpy.v6.resource",
"buildpy.v7",
"buildpy.v7._convenience",
"buildpy.v7._log",
"buildpy.v7._tval",
"buildpy.v7.exception",
"buildpy.v7.resource",
"buildpy.v8",
"buildpy.v8._convenience",
"buildpy.v8._log",
"buildpy.v8._tval",
"buildpy.v8.exception",
"buildpy.v8.resource",
"buildpy.v9",
"buildpy.v9._convenience",
"buildpy.v9._log",
"buildpy.v9._tval",
"buildpy.v9.exception",
"buildpy.v9.resource",
"buildpy.vx",
"buildpy.vx._convenience",
"buildpy.vx._log",
"buildpy.vx._tval",
"buildpy.vx.exception",
"buildpy.vx.resource",
],
install_requires=[
"boto3 <2",
"google-cloud-bigquery <2",
"google-cloud-storage <2",
"psutil <6",
],
extras_require=dict(
dev=["mypy", "pyflakes", "black", "pylint", "wheel", "twine", "pytype"]
),
classifiers=["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
data_files=[(".", ["LICENSE.txt"])],
zip_safe=True,
)