forked from NerdWalletOSS/dynamorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 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
from setuptools import setup
with open("README.rst", "r") as readme_fd:
long_description = readme_fd.read()
setup(
name="dynamorm",
version="0.12.0",
description="DynamORM is a Python object & relation mapping library for Amazon's DynamoDB service.",
long_description=long_description,
author="Evan Borgstrom",
author_email="evan@borgstrom.ca",
url="https://github.com/NerdWalletOSS/DynamORM",
license="Apache License Version 2.0",
python_requires=">=2.7, >=3.9, <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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
],
)