-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 781 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 781 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
from setuptools import setup
requires = [
'pyramid',
'SQLAlchemy',
'transaction',
'validate_email',
'pyDNS',
'passlib',
'pycrypto',
'requests',
'python-slugify',
'uritemplate',
'pyyaml',
]
setup(name='sofa',
version='0.7.6',
description='A lightweight REST API framework',
author='Ryan Eberhardt',
author_email='ryan@reberhardt.com',
url='https://github.com/reberhardt/sofa',
download_url='https://github.com/reberhardt/sofa/tarball/0.7.6',
keywords=['rest', 'api'],
packages=['sofa', 'sofa.scripts'],
install_requires=requires,
entry_points="""\
[paste.app_factory]
main = sofa:main
[console_scripts]
sofa = sofa.scripts.js:main
"""
)