-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.25 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
''' Flask-SQLAngelo '''
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='flask_sqlangelo',
version='0.1',
description='',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='sqlalchemy flask',
long_description=__doc__,
url='http://github.com/otech-nl/sqlangelo',
author='OTech BV',
author_email='[email protected]',
license='CC BY-NC-ND',
packages=['sqlangelo'],
install_requires=[
'flask-sqlalchemy',
'inflect'
],
tests_require=['faker'],
extras_require={
'dev': ['sphinx', 'sphinx-autobuild'],
},
test_suite='tests',
include_package_data=True,
platforms='any',
zip_safe=False
)