forked from marrow/web.session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·117 lines (95 loc) · 3.34 KB
/
setup.py
File metadata and controls
executable file
·117 lines (95 loc) · 3.34 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/usr/bin/env python
# encoding: utf-8
from __future__ import print_function
import os
import sys
import codecs
try:
from setuptools.core import setup, find_packages
except ImportError:
from setuptools import setup, find_packages
if sys.version_info < (2, 7):
raise SystemExit("Python 2.7 or later is required.")
elif sys.version_info > (3, 0) and sys.version_info < (3, 2):
raise SystemExit("CPython 3.3 or Pypy 3 (3.2) or later is required.")
version = description = url = author = author_email = "" # Silence linter warnings.
exec(open(os.path.join("web", "session", "release.py")).read()) # Actually populate those values.
here = os.path.abspath(os.path.dirname(__file__))
tests_require = [
'pytest', # test collector and extensible runner
'pytest-cov', # coverage reporting
'pytest-flakes', # syntax validation
'pytest-capturelog', # log capture
'web.dispatch.object', # test endpoint routing
]
# ## Package Metadata
setup(
# ### Basic Metadata
name = "web.session",
version = version,
description = description,
long_description = codecs.open(os.path.join(here, 'README.rst'), 'r', 'utf8').read(),
url = url,
download_url = 'https://github.com/marrow/web.session/releases',
author = author.name,
author_email = author.email,
license = 'MIT',
keywords = ['marrow', 'web.app', 'web.ext', 'web.session'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
# ### Code Discovery
packages = find_packages(exclude=['bench', 'docs', 'example', 'test', 'htmlcov']),
include_package_data = True,
namespace_packages = [
'web', # primary namespace
'web.app', # session management endpoints
'web.ext', # framework extensions
'web.session', # session engines
],
# ### Plugin Registration
entry_points = {
# #### Re-usable applications or application components.
'web.app': [
# 'session = web.app.session:SessionCollection',
],
# #### WebCore Extensions
'web.extension': [
'session = web.ext.session:SessionExtension',
],
# #### WebCore Extensions
'web.session': [
'memory = web.session.memory:MemorySession',
'disk = web.session.disk:DiskSession',
],
},
# ## Installation Dependencies
setup_requires = [
'pytest-runner',
] if {'pytest', 'test', 'ptr'}.intersection(sys.argv) else [],
install_requires = [
'marrow.package<2.0', # dynamic execution and plugin management
'WebCore>=2.0.3,<3.0', # web framework version pinning
],
tests_require = tests_require,
extras_require = {
'development': tests_require, # An extended set of useful development tools.
},
)