-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 986 Bytes
/
setup.py
File metadata and controls
36 lines (35 loc) · 986 Bytes
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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
import rspview
setup(name="rspview",
version=rspview.__version__,
packages=find_packages(),
include_package_data=True,
author='Richard Boulton',
author_email='richard@tartarus.org',
description='Webapp for browsing through a RestPose server',
long_description=__doc__,
zip_safe=False,
platforms='any',
license='MIT',
url='https://github.com/rboulton/rspview',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Operating System :: Unix',
],
install_requires=[
'flask',
'restpose>=0.7.2',
],
setup_requires=[
'nose>=0.11',
],
tests_require=[
'coverage',
],
)