-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 988 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
setup(
name="buildtool",
version="0.2.*",
author="Rahul Arya",
author_email="[email protected]",
url="https://github.com/Cal-CS-61A-Staff/cs61a-apps/tree/master/buildtool",
long_description=readme,
long_description_content_type="text/markdown",
licence="MIT",
packages=find_packages(
include=["buildtool", "buildtool.common", "buildtool.common.rpc"]
),
package_data={"": ["**/*.tex"]},
include_package_data=True,
entry_points={
"console_scripts": [
"buildtool=buildtool.__main__:cli",
"bt=buildtool.__main__:cli",
]
},
python_requires=">=3.8",
install_requires=[
"click",
"flask",
"cachetools",
"colorama",
"requests",
"tqdm",
"google-cloud-storage",
"packaging",
"pyyaml",
"syrupy",
],
)