-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (36 loc) · 1.3 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="maven",
version="0.1.0",
description=(
"Maven's goal is to reduce the time data scientists spend on data cleaning and preparation "
"by providing easy access to open datasets in both raw and processed formats."
),
long_description=long_description,
long_description_content_type="text/markdown",
keywords="maven open data etl pipeline",
author="John Sandall",
author_email="[email protected]",
url="https://github.com/john-sandall/maven",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=["pandas==1.0.0", "requests==2.22.0", "xlrd==1.2.0",],
python_requires="==3.7.*",
setup_requires=["pytest-runner"],
test_suite="tests",
tests_require=["pytest"],
license="Apache 2.0",
zip_safe=False,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Intended Audience :: Developers",
],
)