-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (57 loc) · 1.3 KB
/
setup.py
File metadata and controls
67 lines (57 loc) · 1.3 KB
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
# coding: utf-8
"""
Presalytics Python Client
Tools to interfacing with the Presalytics.io API.
"""
from setuptools import setup, find_packages # noqa: H301
NAME = "presalytics"
VERSION = "0.5.24"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"urllib3 >= 1.15",
"six >= 1.10",
"certifi",
"python-dateutil",
"flask",
"requests",
"environs",
"matplotlib",
"lxml",
"pyyaml",
"mpld3",
"libsass",
"jsonschema",
"semantic_version",
"jsonpatch",
"pandas",
"wsgi_microservice_middleware>=0.1.5",
"cachetools==4.1.0",
"python-jose",
'markdown',
'py-gfm'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=NAME,
version=VERSION,
description="Presalytics Python Client",
author_email="inquiries@presalytics.io",
url="https://presalytics.io/docs",
keywords=["Presalytics"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description_content_type="text/markdown",
long_description=long_description,
entry_points={
"console_scripts": [
"presalytics = presalytics.cli:main",
],
},
)