-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.41 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
# -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 Infrae. All rights reserved.
# See also LICENSE.txt
from setuptools import setup, find_packages
import os
version = '3.0.5dev'
setup(name='silva.core.interfaces',
version=version,
description="Define Zope interfaces used in Silva",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Framework :: Zope2",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='silva cms interfaces zope',
author='Infrae',
author_email='[email protected]',
url='http://infrae.com/products/silva',
license='BSD',
package_dir={'': 'src'},
packages=find_packages('src', exclude=['ez_setup']),
namespace_packages=['silva', 'silva.core',],
include_package_data=True,
zip_safe=False,
install_requires=[
'grokcore.component',
'setuptools',
'silva.translations',
'zope.annotation',
'zope.component',
'zope.container',
'zope.deferredimport',
'zope.interface',
'zope.lifecycleevent',
'zope.schema',
],
entry_points= """
[zodbupdate]
renames = silva.core.interfaces:CLASS_CHANGES
"""
)