-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.34 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
import os
from setuptools import setup, find_packages
# Get version
cwd = os.path.abspath(os.path.dirname(__file__))
version = '1.0.0'
# Get the documentation
with open(os.path.join(cwd, 'README.md'), "r") as fh:
long_description = fh.read()
CLASSIFIERS = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.11",
]
setup(
name = "covasim_es",
author = "Mercy Mvundura, Lucky G. Ngwira, Kabita Bade Shrestha, Reshma Tuladhar, Jillian Gauld, Cliff Kerr, Kayla Barnes, Bhawana Sharma, Nicholas Feasey",
author_email = "[email protected]",
description = "Malawi ES manuscript",
url = 'http://covasim.org',
keywords = ["COVID-19", "Covasim", "Malawi", "Nepal", "environmental surveillance"],
install_requires = [
"covasim",
],
version=version,
long_description=long_description,
long_description_content_type="text/markdown",
platforms=["OS Independent"],
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
)