forked from Cal-CS-61A-Staff/examtool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 859 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
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
setup(
name="examtool",
version="2.0.17",
author="Rahul Arya",
author_email="[email protected]",
long_description=readme,
long_description_content_type="text/markdown",
licence="MIT",
packages=find_packages(include=["examtool.api", "examtool.cli"]),
package_data={"": ["**/*.tex"]},
include_package_data=True,
entry_points={"console_scripts": ["examtool=examtool.cli.__main__:cli"]},
python_requires=">=3.6",
install_requires=["cryptography"],
extras_require={
"admin": ["pytz", "requests", "pypandoc", "google-cloud-firestore", "google-auth", "sendgrid"],
"cli": ["click", "pikepdf", "pytz", "requests", "fpdf", "pypandoc", "sendgrid", "func-timeout", "fullGSapi", "tqdm"],
},
)