-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.29 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
#!/usr/bin/env python
# from distutils.core import setup
from setuptools import setup, find_packages
with open("README.md", 'r') as readme:
long_description = readme.read()
setup(
name='outbreaker',
version='1.0.5',
description='Explore WHO Disease Outbreak News',
long_description=long_description,
long_description_content_type="text/markdown",
author='Matt Ravenhall',
author_email='[email protected]',
url='https://github.com/mattravenhall/outbreaker',
package_dir={"outbreaker": "src"},
packages=['outbreaker'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
entry_points={
"console_scripts": [
'outbreaker=outbreaker.__main__:main'
]
},
install_requires=[
'beautifulsoup4>=4.6.0',
'requests',
'lxml'
],
python_requires='>=3.7',
)