-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
64 lines (60 loc) · 1.67 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
61
62
63
64
# -*- coding: utf-8 -*-
"""Setup for spirit.zptlint package."""
from setuptools import find_packages
from setuptools import setup
version = '0.2.dev0'
description = 'Linter for Zope Page Templates.'
long_description = ('\n'.join([
open('README.rst').read(),
open('CHANGES.rst').read(),
]))
install_requires = [
'setuptools',
# -*- Extra requirements: -*-
'zope.contentprovider',
'zope.pagetemplate',
'zope.traversing',
]
setup(
name='spirit.zptlint',
version=version,
description=description,
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
],
keywords=[
'zope',
'linter,'
'template',
],
author='it-spirit',
author_email='[email protected]',
url='https://github.com/it-spirit/spirit.zptlint',
download_url='http://pypi.python.org/pypi/spirit.zptlint',
license='BSD',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['spirit'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={
'test': [
]
},
entry_points={
'console_scripts': [
'zptlint = spirit.zptlint:run',
],
},
)