-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 931 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 find_packages, setup
with open("./README.md") as f:
long_description = f.read()
setup(
name="covid-scheduling",
description="Framework for assigning people to COVID-19 testing schedules",
author="Metric Geometry and Gerrymandering Group",
author_email="[email protected]",
maintainer="Parker J. Rule",
maintainer_email="[email protected]",
long_description=long_description,
long_description_content_type="text/x-markdown",
url="https://github.com/vrdi/geometry-of-graph-partitions",
packages=['covid_scheduling'],
version='0.1',
install_requires=['numpy', 'schema', 'ortools'],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
])