-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
70 lines (61 loc) · 1.66 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
from setuptools import setup, find_packages
from codecs import open
import os.path
import io
pjoin = os.path.join
here = os.path.abspath(os.path.dirname(__file__))
name = "greeks"
def get_version(file, name="__version__"):
path = os.path.realpath(file)
version_ns = {}
with io.open(path, encoding="utf8") as f:
exec(f.read(), {}, version_ns)
return version_ns[name]
version = get_version(pjoin(here, name, "_version.py"))
with open(pjoin(here, "README.md"), encoding="utf-8") as f:
long_description = f.read().replace("\r\n", "\n")
requires = [
"tributary>=0.0.6",
]
requires_dev = [
"black>=23",
"flake8>=3.7.8",
"flake8-black>=0.2.1",
"mock",
"pybind11>=2.4.0",
"pytest>=4.3.0",
"pytest-cov>=2.6.1",
"Sphinx>=1.8.4",
"sphinx-markdown-builder>=0.5.2",
] + requires
setup(
name=name,
version=version,
description="Analytics library",
long_description=long_description,
url="https://github.com/streamlet-dev/{name}".format(name=name),
author="Tim Paine",
author_email="timothy.k.paine@gmail.com",
license="Apache 2.0",
install_requires=requires,
extras_require={
"dev": requires_dev,
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="analytics tools plotting",
packages=find_packages(
exclude=[
"tests",
]
),
package_data={},
include_package_data=True,
zip_safe=False,
entry_points={},
)