This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
53 lines (49 loc) · 1.52 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
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()
install_requires = [
'pyramid',
'tempita',
'requests',
'simplejson',
'elasticsearch',
'blinker',
'zope.dottedname',
'cryptacular',
'six',
]
setup(
name='nefertari',
version=VERSION,
description='REST API framework for Pyramid',
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",
"Programming Language :: Python :: 3.5",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Ramses Tech',
author_email='[email protected]',
url='https://github.com/ramses-tech/nefertari',
keywords='web wsgi bfg pylons pyramid rest api elasticsearch',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='nefertari',
install_requires=install_requires,
entry_points="""\
[console_scripts]
nefertari.index = nefertari.scripts.es:main
nefertari.post2api = nefertari.scripts.post2api:main
[pyramid.scaffold]
nefertari_starter = nefertari.scaffolds:NefertariStarterTemplate
""",
)