forked from ramses-tech/ramses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.36 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
VERSION = open(os.path.join(here, 'VERSION')).read()
requires = [
'cryptacular',
'inflection',
'nefertari>=0.6.1',
'pyramid',
'ramlfications==0.1.8',
'six',
'transaction',
]
setup(name='ramses',
version=VERSION,
description='Generate a RESTful API for Pyramid using RAML',
long_description=README,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Brandicted',
author_email='hello@ramses.tech',
url='https://github.com/ramses-tech/ramses',
keywords='web pyramid pylons nefertari raml',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="ramses",
entry_points="""\
[pyramid.scaffold]
ramses_starter = ramses.scaffolds:RamsesStarterTemplate
""")