forked from aldjemy/aldjemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (25 loc) · 832 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
#!/usr/bin/env python
import os.path
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setupconf = dict(
name='aldjemy',
version="0.5.0-rc1",
license='BSD',
url='https://github.com/Deepwalker/aldjemy/',
author='Mihail Krivushin',
author_email='[email protected]',
description=('SQLAlchemy to Django integration library'),
long_description = read('README.rst'),
packages = find_packages(),
install_requires = ['sqlalchemy>0.7.1'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)
if __name__ == '__main__':
setup(**setupconf)