-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
28 lines (26 loc) · 983 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
from setuptools import setup
readme = open('README.rst', 'r')
README_TEXT = readme.read()
readme.close()
setup(
name='sqla_hierarchy',
packages=['sqla_hierarchy'],
version='0.2',
description='Adjacency List Relationships helper (only using databases own implementations)',
long_description=README_TEXT,
author='Mariano Mara',
author_email='[email protected]',
url='https://github.com/marplatense/sqla_hierarchy',
download_url='https://github.com/marplatense/sqla_hierarchy/downloads',
license='MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords = ['sqlachemy', 'hierarchy', 'adjacency list', 'python']
,install_requires=['sqlalchemy']
)