-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
42 lines (36 loc) · 1.2 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
from setuptools import setup, Command
import subprocess
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
errno = subprocess.call(['py.test'])
raise SystemExit(errno)
setup(
name='Flask-Uploads',
version='0.1.3',
url='http://github.com/FelixLoether/flask-uploads',
author='Oskari Hiltunen',
author_email='[email protected]',
description='A Flask extension to help you add file uploading '
'functionality to your site.',
long_description=open('README.rst').read(),
packages=['flask_uploads'],
install_requires=['python-loaders==0.2.3'],
platforms='any',
cmdclass={'test': PyTest},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
)