forked from collective/Products.BeakerSessionDataManager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 1 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
from setuptools import setup, find_packages
version = '1.0'
requires = [
'setuptools',
'collective.beaker',
'beaker',
'Zope2',
'zope.interface'
]
setup(
name='Products.BeakerZopeSessionManager',
version=version,
description="Zope4 session implementation using Beaker",
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
keywords='zope sessions beaker',
author='Gisoldo, Gabriel Diniz',
author_email='gabrielgisoldi@gmail.com',
url='https://github.com/gabrielgisoldo/Products.BeakerZopeSessionManager',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
python_requires='>=3.7'
)