-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
setup.py
110 lines (95 loc) · 3.54 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import sys
import os
from setuptools import find_packages, setup
from setuptools.command.install import install
import versioneer
class VerifyVersionCommand(install):
"""Verify that the git tag matches our package version"""
description = "verify that the git tag matches our package version"
def run(self):
version = versioneer.get_version()
tag = os.getenv("CIRCLE_TAG")
if tag != version:
info = "Failed version verification: '{0}' does not match the version of this app: '{1}'".format(
tag, version
)
sys.exit(info)
## base requirements
install_requires = open("requirements.txt").read().strip().split("\n")
dev_requires = open("dev-requirements.txt").read().strip().split("\n")
test_requires = open("test-requirements.txt").read().strip().split("\n")
extras = {
"airtable": ["airtable-python-wrapper >= 0.11, < 0.12"],
"aws": ["boto3 >= 1.9, < 2.0"],
"azure": [
"azure-storage-blob >= 12.1.0, < 13.0",
"azureml-sdk >= 1.0.65, < 1.1",
"azure-cosmos >= 3.1.1, <3.2",
],
"dask_cloudprovider": ["dask_cloudprovider >= 0.2.0, < 1.0"],
"dev": dev_requires + test_requires,
"dropbox": ["dropbox ~= 9.0"],
"ge": ["great_expectations >= 0.11.1"],
"gcp": [
"google-cloud-bigquery >= 1.6.0, < 2.0",
"google-cloud-storage >= 1.13, < 2.0",
],
"github": ["PyGithub >= 1.51, < 2.0"],
"google": [
"google-cloud-bigquery >= 1.6.0, < 2.0",
"google-cloud-storage >= 1.13, < 2.0",
],
"gsheets": ["gspread >= 3.6.0"],
"jira": ["jira >= 2.0.0"],
"kubernetes": ["kubernetes >= 9.0.0a1, <= 11.0.0b2", "dask-kubernetes >= 0.8.0"],
"postgres": ["psycopg2-binary >= 2.8.2"],
"mysql": ["pymysql >= 0.9.3"],
"pushbullet": ["pushbullet.py >= 0.11.0"],
"redis": ["redis >= 3.2.1"],
"rss": ["feedparser >= 5.0.1, < 6.0"],
"snowflake": ["snowflake-connector-python >= 1.8.2, < 2.5"],
"spacy": ["spacy >= 2.0.0, < 3.0.0"],
"templates": ["jinja2 >= 2.0, < 3.0"],
"test": test_requires,
"viz": ["graphviz >= 0.8.3"],
"twitter": ["tweepy >= 3.5, < 4.0"],
}
if sys.version_info < (3, 6):
extras["dev"].remove("black")
extras["all_extras"] = sum(extras.values(), [])
cmdclass = {
"verify_version": VerifyVersionCommand,
}
cmdclass.update(versioneer.get_cmdclass())
setup(
name="prefect",
version=versioneer.get_version(),
cmdclass=cmdclass,
install_requires=install_requires,
extras_require=extras,
scripts=[],
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
entry_points={"console_scripts": ["prefect=prefect.cli:cli"]},
python_requires=">=3.6",
description="The Prefect Core automation and scheduling engine.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://www.github.com/PrefectHQ/prefect",
license="Apache License 2.0",
author="Prefect Technologies, Inc.",
author_email="help@prefect.io",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Monitoring",
],
)