-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (56 loc) · 1.44 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
50
51
52
53
54
55
56
57
58
59
60
from setuptools import find_packages
from setuptools import setup
import os
version = '0.8.dev0'
shortdesc = 'Poptraces'
longdesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='chronotope',
version=version,
description=shortdesc,
long_description=longdesc,
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='',
author='Squarewave Computing',
author_email='rnix@squarewave.at',
url=u'http://github.com/rnixx/chronotope',
license='GPL2',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'pyOpenSSL',
'html2text',
'Whoosh',
'lxml',
'zope.sqlalchemy',
'node.ext.ugm',
'repoze.tm2',
'repoze.retry',
'cone.app',
'cone.sql',
'yafowil.yaml',
'yafowil.widget.autocomplete',
'yafowil.widget.datetime',
'yafowil.widget.image',
'yafowil.widget.location',
'yafowil.widget.select2',
'yafowil.widget.wysihtml5',
'yafowil.widget.recaptcha',
],
extras_require=dict(
test=[
'interlude',
]
),
tests_require=[
'interlude',
],
test_suite="chronotope.tests.test_suite"
)