-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
37 lines (35 loc) · 1.37 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
from setuptools import setup
with open("README.rst", "r") as readme_fd:
long_description = readme_fd.read()
setup(
name="dynamorm",
version="0.11.0",
description="DynamORM is a Python object & relation mapping library for Amazon's DynamoDB service.",
long_description=long_description,
author="Evan Borgstrom",
author_email="[email protected]",
url="https://github.com/NerdWalletOSS/DynamORM",
license="Apache License Version 2.0",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
install_requires=["blinker>=1.4,<2.0", "boto3>=1.3,<2.0", "six"],
extras_require={
"marshmallow": ["marshmallow>=2.15.1,<4"],
"schematics": ["schematics>=2.1.0,<3"],
},
packages=["dynamorm", "dynamorm.types"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
],
)