forked from pandem2/pandem-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 814 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
29
30
31
32
33
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='pandem-source',
version='1.1.7',
description='Routinely collecting heterogeneous surveillance data into a coherent database',
long_description=readme,
long_description_content_type='text/markdown',
author='Francisco Orchard',
author_email='[email protected]',
url='https://github.com/pandem2/pandem-source',
license="EUPL-1.2",
install_requires=[
"pyyaml",
"pandas",
"openpyxl",
"pykka",
"psutil",
"lxml",
"isoweek",
"tweepy",
"tornado",
"asyncio",
"tornado-rest-swagger"
],
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True
)