-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.13 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.13 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
from setuptools import setup, find_packages
version = "2.2.dev0"
requires = [
"setuptools",
"collective.beaker",
"Zope2",
"zope.interface",
"unittest2",
"Products.Sessions",
]
setup(
name="Products.BeakerSessionDataManager",
version=version,
description="Zope2 session implementation using Beaker",
long_description=open("README.rst").read() + "\n" + open("CHANGES.rst").read(),
# Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Framework :: Zope :: 4",
"License :: OSI Approved :: MIT License",
],
keywords="zope sessions beaker",
author="David Glick, Groundwire",
author_email="davidglick@groundwire.org",
url="http://github.com/davisagli/Products.BeakerSessionDataManager",
license="MIT",
packages=find_packages(exclude=["ez_setup"]),
namespace_packages=["Products"],
include_package_data=True,
zip_safe=False,
install_requires=requires,
extras_require={},
)