-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
37 lines (33 loc) · 1.04 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
import os
from setuptools import setup
def contents(filename):
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, filename)) as fp:
return fp.read()
setup(
name="sqlalchemy-json",
version="0.7.0",
author="Elmer de Looff",
author_email="[email protected]",
description="JSON type with nested change tracking for SQLAlchemy",
long_description=contents("README.rst"),
long_description_content_type="text/x-rst",
keywords="sqlalchemy json mutable",
license="BSD",
url="https://github.com/edelooff/sqlalchemy-json",
packages=["sqlalchemy_json"],
python_requires=">= 3.6",
install_requires=["sqlalchemy>=0.7"],
extras_require={
"dev": ["pytest"]
},
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Database",
],
)