This repository has been archived by the owner on Mar 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (71 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- coding: utf-8 -*-
"""
setup.py
~~~~~~~~
A WSGI compliant REST micro-framework.
:copyright: (c) 2016 Anomaly Software
:license: Apache 2.0, see LICENSE for more details.
"""
from setuptools import setup, find_packages
from vishnu import __version__
setup(
name="vishnu",
version=__version__,
description='Sessions for the Google App Engine Python runtime',
url='https://github.com/anomaly/vishnu.git',
long_description=open("README.rst").read(),
download_url='https://github.com/anomaly/vishnu/archive/' + __version__ + '.tar.gz',
license='Apache 2.0',
author='Anomaly Software',
author_email='[email protected]',
maintainer='Anomaly Software',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Session',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
platforms=['any'],
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=[
"future",
"pycryptodome>=3.6.0,<3.7.0"
],
tests_require=[
'pytest',
'pytest-cov',
'google-cloud-datastore',
'redis',
'pylibmc',
'pymemcache',
'python-memcached',
'falcon',
'webtest'
],
setup_requires=['pytest-runner'],
extras_require={
'devel': ['tox', 'tox-pyenv', 'pytest'],
'pylibmc': ['pylibmc'],
'pymemcache': ['pymemcache'],
'python-memcached': ['python-memcached'],
'redis': ['redis'],
'datastore': ['google-cloud-datastore']
}
)