-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (44 loc) · 1.48 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
48
49
# -*- coding: utf-8 -*-
# Copyright (c) 2008-2013 Infrae. All rights reserved.
# See also LICENSE.txt
from setuptools import setup, find_packages
import os
version = '3.0.2dev'
tests_require = [
'Products.Silva [test]',
]
setup(name='Products.SilvaMetadata',
version=version,
description="Metadata engine for Silva CMS",
long_description=open(os.path.join("Products", "SilvaMetadata", "README.txt")).read() + "\n" +
open(os.path.join("Products", "SilvaMetadata", "HISTORY.txt")).read(),
classifiers=[
"Framework :: Zope2",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='silva zope2 metadata',
author='Infrae',
author_email='[email protected]',
url='https://github.com/silvacms/Products.SilvaMetadata',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Products.Formulator',
'five.grok',
'setuptools',
'silva.core.conf',
'silva.core.services',
'silva.core.views',
'zope.interface',
'zope.annotation',
'zope.component',
'zope.event',
],
tests_require = tests_require,
extras_require = {'test': tests_require},
)