-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 812 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dotscience",
version="0.8.7",
author="Subtree, Inc",
author_email="support@dotscience.com",
description="Tools for writing Dotscience workloads",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dotmesh-io/dotscience-python",
packages=setuptools.find_packages(),
install_requires=['datadots-api>=0.2.1', 'requests', "joblib==0.14.0"],
tests_require=['pytest', 'hypothesis', 'datadots-api>=0.2.1'],
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)