-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (46 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (46 loc) · 1.57 KB
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
51
from setuptools import setup
import os.path as path
# Get the path to our current directory
path_here = path.abspath(path.dirname(__file__))
# Get the package version from its universal storage location, covid19pandas/version.py
version = {}
version_path = path.join(path_here, "covid19pandas", "version.py")
with open(version_path) as fp:
exec(fp.read(), version)
# Get the long description from the README file
readme_path = path.join(path_here, "README.md")
with open(readme_path) as readme_file:
readme_text = readme_file.read()
setup(name='covid19pandas',
version=version['__version__'],
description='COVID-19 data as pandas dataframes. Built-in plotting functions. Tutorials in our docs.',
long_description=readme_text,
long_description_content_type='text/markdown',
url='https://github.com/PayneLab/covid19pandas',
author='Dr. Samuel Payne',
author_email='sam_payne@byu.edu',
license='Apache 2.0',
packages=['covid19pandas'],
install_requires=[
'numpy>=1.16.3',
'pandas>=0.25.1',
'requests>=2.21.0',
'seaborn>=0.10.0',
'matplotlib>=3.1.0',
],
data_files=[
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: Apache Software License',
],
keywords='covid covid-19 corona coronavirus COVID COVID-19 pandas Pandas bioinformatics',
python_requires='>=3.6.*',
zip_safe=False,
include_package_data=True,
project_urls={
'Documentation': 'https://github.com/PayneLab/covid19pandas/tree/master/docs/'
},
)