forked from edelooff/sqlalchemy-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 996 Bytes
/
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
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.4.0',
author='Elmer de Looff',
author_email='elmer.delooff@gmail.com',
description='JSON type with nested change tracking for SQLAlchemy',
long_description=contents('README.rst'),
keywords='sqlalchemy json mutable',
license='BSD',
url='https://github.com/edelooff/sqlalchemy-json',
packages=['sqlalchemy_json'],
install_requires=[
'six',
'sqlalchemy>=0.7'],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Database'])