This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
85 lines (73 loc) · 2.88 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import warnings
"""The setup script."""
from setuptools import find_packages, setup
# don't fail if there are problems with the readme (happens within circleci)
try:
with open("README.md") as readme_file:
readme = readme_file.read()
except Exception:
warnings.warn("README.md not found")
readme = None
REQUIREMENTS_FILES = ["requirements.txt"]
def get_version():
version_dict = {}
with open("hamilton/version.py") as f:
exec(f.read(), version_dict)
return ".".join(map(str, version_dict["VERSION"]))
VERSION = get_version()
def load_requirements():
requirements = set()
for requirement_file in REQUIREMENTS_FILES:
with open(requirement_file) as f:
requirements.update(line.strip() for line in f)
return list(requirements)
setup(
name="sf-hamilton", # there's already a hamilton in pypi
version=VERSION,
description="Hamilton, the micro-framework for creating dataframes.",
long_description=readme,
long_description_content_type="text/markdown",
author="Stefan Krawczyk, Elijah ben Izzy",
author_email="[email protected],[email protected]",
url="https://github.com/stitchfix/hamilton",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=load_requirements(),
zip_safe=False,
keywords="hamilton",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
# Note that this feature requires pep8 >= v9 and a version of setup tools greater than the
# default version installed with virtualenv. Make sure to update your tools!
python_requires=">=3.6, <4",
# adding this to slim the package down, since these dependencies are only used in certain contexts.
extras_require={
"visualization": ["graphviz", "networkx"],
"dask": ["dask[complete]"], # commonly you'll want everything.
"dask-array": ["dask[array]"],
"dask-core": ["dask-core"],
"dask-dataframe": ["dask[dataframe]"],
"dask-diagnostics": ["dask[diagnostics]"],
"dask-distributed": ["dask[distributed]"],
"ray": ["ray>=2.0.0", "pyarrow"],
"pyspark": ["pyspark[pandas_on_spark]"],
"pandera": ["pandera"],
},
# Relevant project URLs
project_urls={ # Optional
"Bug Reports": "https://github.com/stitchfix/hamilton/issues",
"Source": "https://github.com/stitchfix/hamilton",
},
)