-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (41 loc) · 1.32 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
# -*- coding: utf-8 -*-
from setuptools import setup
import pynaut
# README.rst dynamically generated:
with open('README.rst', 'w') as f:
f.write(pynaut.__doc__)
NAME = 'pynaut'
def read(file):
with open(file, 'r') as f:
return f.read().strip()
setup(
name=NAME,
version=read('VERSION'),
description='A tool for recursively exploring arbitrary python objects.',
long_description=read('README.rst'),
author='Mike Burr',
author_email='mburr@unintuitive.org',
url='https://github.com/stnbu/{0}'.format(NAME),
download_url='https://github.com/stnbu/{0}/archive/master.zip'.format(NAME),
provides=[NAME],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Testing',
'Topic :: Software Development',
'Topic :: Utilities',
],
packages=[NAME, NAME+'.ui'],
keywords=['introspection', 'debugging'],
test_suite='nose.collector',
requires=['urwid', 'UniCurses'],
entry_points={
'console_scripts': [
'%s = %s.ui.main:main' % (NAME, NAME),
],
'gui_script': []},
)