-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (45 loc) · 1.38 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
"""Setup for airstorm.
"""
import os
import sys
from setuptools import setup
dirname = os.path.dirname(__file__)
info = {}
with open(os.path.join(dirname, "airstorm", "__info__.py"), mode="r") as f:
exec(f.read(), info) # pylint: disable=W0122
# Get the long description from the README file.
with open(os.path.join(dirname, "README.md"), encoding="utf-8") as fle:
long_description = fle.read()
setup(
name="airstorm",
version=info.get("__version__", ""),
description="A Python ORM for Airtable.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/douglaslassance/airstorm",
author=info.get("__author__", ""),
author_email=info.get("__email__", ""),
license=info.get("__license__", ""),
packages=["airstorm"],
install_requires=[
"airtable-python-wrapper~=0.15",
"inflection~=0.5",
],
extras_require={
"ci": [
"flake8-print~=3.1",
"flake8~=3.8",
"pep8-naming~=0.11",
"pytest-cov~=2.10.1",
"pytest-html~=2.1.1",
"pytest-pep8~=1.0.6",
"pytest~=6.1.1",
"requests-mock~=1.8",
"sphinx-markdown-tables~=0.0",
"sphinx-rtd-theme~=0.5",
"sphinxcontrib-apidoc~=0.3",
"Sphinx~=3.2",
],
},
include_package_data=True,
)