-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (18 loc) · 874 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setuptools.setup(
name = "studydrive", # This is the name of the package
version = "0.3.1", # The initial release version
author = "Henry Haustein", # Full name of the author
description = "A Python Wrapper for the (unofficial) Studydrive API",
packages = setuptools.find_packages(), # List of all python modules to be installed
python_requires = '>=3.6', # Minimum version requirement of the package
install_requires=["requests", "datetime"],
url = "https://github.com/henrydatei/studydrive-api",
long_description=README,
long_description_content_type="text/markdown",
)