-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
28 lines (27 loc) · 916 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
import sys
from setuptools import setup
setup(
name='Flask-OrientDB',
py_modules=['flask_orientdb'],
version='0.1',
license='BSD',
description='A Flask extension for using OrientDB with Flask',
long_description=__doc__,
author='Cory Althoff',
author_email='[email protected]',
url='http://github.com/calthoff/flask-orientdb',
install_requires= ['Flask', 'pyorient==1.4'],
zip_safe=False,
include_package_data=True,
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)