-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (23 loc) · 999 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
# A minimal setup.py file to make a Python project installable.
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = [line.strip() for line in fh]
setuptools.setup(
name = "CI Bin",
version = "0.0.1",
author = "Armaan Kalyanpur, Olivia McNary, Andrew Kaplan, Mengdi Gao",
author_email = "armaankalyanpur@berkeley.edu",
description = "A Python library to test the efficacy of treatments, such as the Regeneron antibody cocktail's effect on COVID.",
long_description = long_description,
long_description_content_type = "text/markdown",
packages = setuptools.find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires = '>= 3.8',
install_requires = requirements,
)