forked from SynoCommunity/spkrepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (53 loc) · 2.14 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
tests_require = ['Flask-Testing',
'factory-boy', 'Faker',
'lxml', 'urltools', 'mock',
'coveralls']
install_requires = ['Flask',
'Flask-SQLAlchemy',
'Flask-Security', 'passlib',
'Flask-Babelex',
'Flask-WTF', 'Flask-Mail', 'configparser',
'Flask-Principal',
'Flask-Admin==1.0.8', 'sqlalchemy<1.2', # ValueError: too many values to unpack (until flask-admin is fixed)
'Pillow',
'Flask-RESTful',
'Flask-Login',
'Flask-Cache', 'redis',
'python-gnupg', 'requests', 'click',
'Flask-Migrate', 'alembic>=0.7.0',
'Flask-Script', 'Text-Unidecode', 'ipaddress',
'Flask-DebugToolbar']
dev_requires = ['sphinx', 'sphinx-rtd-theme']
setup(
name='spkrepo',
version='0.1',
license='MIT',
url='https://github.com/Diaoul/spkrepo',
description='Synology Package Repository',
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
author='Antoine Bertin',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: System :: Archiving :: Packaging'
],
install_requires=install_requires,
test_suite='spkrepo.tests.suite',
tests_require=tests_require,
extras_require={'tests': tests_require,
'dev': tests_require + dev_requires}
)