-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (34 loc) · 862 Bytes
/
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
from setuptools import setup
name = 'parse2plone'
description = 'Easily import static HTML websites into Plone.'
version = '0.9.3'
def read(file):
file = open(file)
data = file.read()
file.close()
return data
setup(
name=name,
version=version,
description=description,
long_description=read('README.txt')+read('docs/HISTORY.txt'),
url='http://aclark4life.github.com/Parse2Plone',
author='Alex Clark',
author_email='[email protected]',
entry_points={
'zc.buildout': ['default = %s:Recipe' % name],
},
install_requires=[
'BeautifulSoup',
'lxml',
'zc.buildout',
],
py_modules=['parse2plone','slugify','rename'],
classifiers=[
'Framework :: Buildout',
'Framework :: Plone'
],
extras_require={
'tests': ['zope.testing'],
},
)