-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1.46 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
import os
from setuptools import setup, find_packages
import versioneer
install_requires = ["distributed", "packaging", "requests", "cryptography"]
setup(
name="dask-saturn",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
maintainer="Saturn Cloud Developers",
maintainer_email="[email protected]",
license="BSD-3-Clause",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="dask saturn cloud distributed cluster",
description="Dask Cluster objects in Saturn Cloud",
long_description=(open("README.md").read() if os.path.exists("README.md") else ""),
long_description_content_type="text/markdown",
url="https://saturncloud.io/",
project_urls={
"Documentation": "http://docs.saturncloud.io",
"Source": "https://github.com/saturncloud/dask-saturn",
"Issue Tracker": "https://github.com/saturncloud/dask-saturn/issues",
},
packages=find_packages(),
package_data={"dask_saturn": ["*.yaml"]},
install_requires=install_requires,
tests_require=["pytest"],
zip_safe=False,
)