forked from cysnake4713/sqlalchemy-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 716 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
name='sqlalchemy-json',
version="1.0.0",
description="A full-featured JSON type with mutation tracking for SQLAlchemy",
author="Elmer de Looff",
author_email="elmer.delooff@gmail.com",
url="https://github.com/edelooff/sqlalchemy-json",
packages=find_packages(),
install_requires=[
'sqlalchemy>=0.7',
'sqlalchemy_utils',
],
zip_safe=False,
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)