forked from paepcke/covid19_voting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.49 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
import multiprocessing
from setuptools import setup, find_packages
import os
import glob
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "Covid-19",
version = "0.1",
packages = find_packages(),
# Dependencies on other packages:
setup_requires = ['pytest-runner'],
install_requires = ['scikit-learn>=0.23.2',
'pandas>=1.1.1',
'xlrd>=1.2.0', # Pandas Excel support
'openpyxl>=3.0.5', # Pandas Excel support
'category-encoders>=2.2.2', # leave-one-out encoding
'seaborn>=0.11.0',
'dbf>=0.99.0'
],
#dependency_links = ['https://github.com/DmitryUlyanov/Multicore-TSNE/tarball/master#egg=package-1.0']
# Unit tests; they are initiated via 'python setup.py test'
#test_suite = 'nose.collector',
#test_suite = 'tests',
#test_suite = 'unittest2.collector',
tests_require =['pytest',
'testfixtures>=6.14.1',
],
# metadata for upload to PyPI
author = "Andreas Paepcke",
author_email = "[email protected]",
description = "Predict voter turnout",
long_description_content_type = "text/markdown",
long_description = long_description,
license = "BSD",
keywords = "covid-19",
url = "[email protected]:paepcke/covid19_voting.git", # project home page, if any
)