-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
40 lines (34 loc) · 1.21 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
"""The setup script."""
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as fh:
requirements = fh.read().splitlines()
with open('test-requirements.txt') as fh:
test_requirements = fh.read().splitlines()
setup_requirements = ["pytest-runner"]
setup(
author="Joris den Uijl",
author_email="jorisdenuijl@gmail.com",
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
description="Functions to easily transform Azure blobs into pandas DataFrames and vice versa.",
install_requires=requirements,
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
keywords=["pandablob", "pandas", "blob", "Microsoft Azure Storage"],
name="pandablob",
packages=find_packages(include=["pandablob"]),
test_suite="tests",
setup_requires=setup_requirements,
tests_require=test_requirements,
url="https://github.com/uijl/pandablob",
version="0.0.5",
zip_safe=False,
)