forked from danielholmstrom/dictalchemy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
61 lines (53 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
"""
~~~~~~~~~~~
Dictalchemy
~~~~~~~~~~~
Contains asdict() and fromdict() methods that will work on SQLAlchemy
declarative models.
Read more in the source or on github
<https://github.com/danielholmstrom/dictalchemy>.
"""
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.rst")).read()
# Requirements for the package
install_requires = [
"SQLAlchemy>=0.9.4",
]
# Requirement for running tests
test_requires = install_requires
setup(
name="dictalchemy3",
version="1.0.0",
description="Contains asdict and fromdict methods for SQL-Alchemy declarative models",
long_description=README,
url="http://github.com/disko/dictalchemy3/",
license="MIT",
author="Daniel Holmstrom",
author_email="[email protected]",
platforms="any",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: " "Libraries :: Python Modules",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=test_requires,
test_suite="dictalchemy",
)