-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (33 loc) · 916 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
from setuptools import setup, find_packages
version = '1.0.0rc2.dev0'
setup(
name='rt.zps',
version=version,
description="A zope processes inspector",
long_description='\n\n'.join((
open('README.rst').read(),
open('docs/HISTORY.rst').read(),
)),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='',
author='ale-rt',
author_email='alessandro.pisa@redturtle.it',
url='http://github.com/RedTurtle/rt.zps',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples']),
include_package_data=True,
scripts=['rt/zps/zps'],
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'psutil'
],
test_suite="rt.zps.tests",
entry_points="""
# -*- Entry points: -*-
""",
)