-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (44 loc) · 1.63 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
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of the COVID-surge application.
# https://github/dpploy/covid-surge
# Valmor F. de Almeida dealmeidavf@gmail.com
""""Setup config for PyPI."""
# Read contents of README file.
from os import path
import setuptools
THIS_DIRECTORY = path.abspath(path.dirname(__file__))
with open(path.join(THIS_DIRECTORY, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
with open('requirements.txt', 'r') as fh:
REQ = fh.readlines()
setuptools.setup(
name='covid-surge',
version='0.0.41',
author='Valmor F. de Almeida',
author_email='valmor_dealmeida@uml.edu',
description='Covid-Surge is a utility for computing and comparing '+\
'mortality surge periods of communities afflicted by the '+\
'COVID-19 virus pandemic.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
setup_requires=['wheel'],
include_package_data=True,
install_requires=REQ,
url='https://github.com/dpploy/covid-surge',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Operating System :: MacOS',
'Operating System :: Unix',
'Topic :: Education',
'Topic :: Utilities'
],
python_requires='>=3.6',
)