-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.12 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
from setuptools import setup, find_packages
import os
version = '2.2.1dev'
setup(name='silva.searchandreplace',
version=version,
description="Search in all Silva documents and replace information in Silva 2.x",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Framework :: Zope2",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
],
keywords='silva silvadocument search replace service',
author='Guido Wesdorp',
author_email='[email protected]',
url='https://github.com/silvacms/silva.searchandreplace',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['silva'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'lxml',
'silva.core.interfaces',
'silva.core.services',
'silva.core.conf',
'Products.Silva >= 2.2dev',
],
)