-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (45 loc) · 1.18 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
from setuptools import setup, find_packages
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.md')
+ '\n' +
read('CHANGES.md')
+ '\n' +
'Download\n'
'********\n'
)
tests_require = [
'zope.app.wsgi',
'zope.configuration',
'zope.testing',
]
setup(
name='grok',
version='1.14.2.dev0',
author='Grok Team',
author_email='[email protected]',
url='http://grok.zope.org',
download_url='http://cheeseshop.python.org/pypi/grok/',
description='Grok: Now even cavemen can use Zope 3!',
long_description=long_description,
license='ZPL',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Framework :: Zope3',
],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'grok >=1.14.1',
'myapp',
],
tests_require=tests_require,
extras_require={'test': tests_require},
)