forked from micahjsmith/dengue_prediction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (72 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''The setup script.'''
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
requirements = [
'Click',
'awscli',
'btb',
'category_encoders',
'fhub_core>=0.3.5',
'fhub_transformers>=0.2.4',
'funcy',
'gitpython',
'h5py',
'numpy',
'pandas;python_version>="3.5"', # hack
'pandas<0.21;python_version<"3.5"', # hack
'python-dotenv>=0.5.1',
'pyyaml',
'scikit_learn',
'sklearn_pandas',
]
setup_requirements = [
'pytest-runner',
]
test_requirements = [
'pytest',
'pytest-runner',
'coverage',
]
extras_require = {
#'btb': ['btb']
}
dependency_links= [
'git+https://github.com/micahjsmith/BTB.git@48db0da94a28492220ca666de80e193c50d756f6#egg=btb-0.1.0',
]
setup(
name='dengue_prediction',
version='0.1.0',
description="",
long_description=readme + '\n\n' + history,
author="Micah Smith",
author_email='[email protected]',
url='https://github.com/micahjsmith/dengue_prediction',
packages=find_packages(
include=['dengue_prediction', 'dengue_prediction.*']),
include_package_data=True,
install_requires=requirements,
dependency_links=dependency_links,
license="MIT license",
zip_safe=False,
keywords='dengue_prediction',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='dengue_prediction/tests',
tests_require=test_requirements,
setup_requires=setup_requirements,
extras_require=extras_require,
)