forked from simplistix/SimpleUserFolder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 775 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 775 Bytes
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
# Copyright (c) 2010 Simplistix Ltd
# See license.txt for license details.
import os
from setuptools import setup,find_packages
package_name = 'Products.SimpleUserFolder'
base_dir = os.path.dirname(__file__)
setup(
name=package_name,
version='0.0.0',
author='Chris Withers',
author_email='chris@simplistix.co.uk',
license='MIT',
description="A scriptable, subclassable, fully documented and tested user folder implementation for Zope 2.",
url='https://github.com/zms-publishing/SimpleUserFolder',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False
)