-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (26 loc) · 843 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 = 'djony',
version = "0.0.1",
license = 'LGPL',
url = 'https://github.com/nnseva/djony/',
author = 'Vsevolod Novikov',
author_email = 'nnseva@gmail.com',
description = ('Pony ORM to Django integration library'),
long_description = read('README.rst'),
packages = find_packages(),
install_requires = ['pony>=0.4.9'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: LGPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
zip_safe=False,
)
if __name__ == '__main__':
setup(**setupconf)