-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (47 loc) · 1.33 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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
def read_file(name):
"""
Read file content
"""
f = open(name)
try:
return f.read()
except IOError:
print("could not read %r" % name)
f.close()
LONG_DESC = read_file('README.rst') + '\n\n' + read_file('HISTORY.rst')
EXTRAS = {}
setup(
name='dbug',
version='1.2',
description='Print tools for debuging',
long_description=LONG_DESC,
author='Léo Flaventin Hauchecorne',
author_email='hl037.prog@gmail.com',
url='http://leo-flaventin.com',
project_urls={
'Documentation': 'https://github.com/hl037/dbug.py/blob/master/dbug/__init__.py',
'Source': 'https://github.com/hl037/dbug.py',
'Tracker': 'https://github.com/hl037/dbug.py/issues',
},
license='Public Domain',
packages=find_packages(),
test_suite=None,
include_package_data=True,
zip_safe=False,
install_requires=[],
extras_require=None,
entry_points=None,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Debuggers',
],
**EXTRAS
)