forked from optilude/corejet.visualization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 844 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
from setuptools import setup, find_packages
version = '1.0a5'
requires = [
'setuptools',
'lxml',
'corejet.core',
'unittest2',
]
setup(name='corejet.visualization',
version=version,
description="Support for generating reports visualizing CoreJet test runs",
long_description=open("README.txt").read() + "\n" +
open("CHANGES.txt").read(),
classifiers=[
"Programming Language :: Python",
],
keywords='corejet',
author='Martin Aspeli',
author_email='[email protected]',
url='http://corejet.org',
license='ZPL 2.1',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['corejet'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points="""
""",
)