-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 810 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
import pathlib
HERE = pathlib.Path(__file__).parent
# Explicitly specify UTF-8 encoding when reading the README
README = (HERE / "README.md").read_text(encoding="utf-8")
setup(
name="morgan_course_data",
version="0.1.2",
packages=find_packages(),
description="Python package for querying Morgan State University course data.",
long_description=README,
long_description_content_type="text/markdown",
author="Clyde Tandjong",
author_email="[email protected]",
url="https://github.com/clydewtt/morgan-course-api",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
install_requires=["pymongo", "bson"],
extras_require={"dev": ["pytest>=6.0.0"]},
)