-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
61 lines (57 loc) · 1.62 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
"""
Run setup
"""
from setuptools import setup, find_packages
def parse_description(description):
"""
Strip figures and alt text from description
"""
return "\n".join(
[
a for a in description.split("\n")
if ("figure::" not in a) and (":alt:" not in a)
])
DISTNAME = "mr_uplift"
VERSION = "0.0.16"
DESCRIPTION = "Machine learning tools for uplift models"
with open("README.rst") as f:
LONG_DESCRIPTION = parse_description(f.read())
CLASSIFIERS = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering"
]
AUTHOR = "Ibotta Inc."
AUTHOR_EMAIL = "[email protected]"
LICENSE = "Apache 2.0"
DOWNLOAD_URL = "https://github.com/Ibotta/mr_uplift"
PROJECT_URLS = {
"Source Code": "https://github.com/Ibotta/mr_uplift"
}
MIN_PYTHON_VERSION = "3.5"
setup(name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
download_url=DOWNLOAD_URL,
project_urls=PROJECT_URLS,
packages=find_packages(),
install_requires=[
'numpy>1.17.2',
'pandas>=0.20.0',
'tensorflow==2.4.1',
'keras',
'dill',
'sklearn'
],
python_requires=">={0}".format(MIN_PYTHON_VERSION)
)