-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
57 lines (52 loc) · 1.6 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
import os
import codecs
import versioneer
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with codecs.open(os.path.join(HERE, *parts), 'rb', 'utf-8') as f:
return f.read()
setup(
name='eliot-tree',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Render Eliot logs as an ASCII tree',
license='MIT',
url='https://github.com/jonathanj/eliottree',
author='Jonathan Jacobs',
author_email='jonathan@jsphere.com',
maintainer='Jonathan Jacobs',
maintainer_email='jonathan@jsphere.com',
include_package_data=True,
long_description=read('README.rst'),
packages=find_packages(where='src'),
package_dir={'': 'src'},
entry_points={
# These are the command-line programs we want setuptools to install.
'console_scripts': [
'eliot-tree = eliottree._cli:main',
],
},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: System :: Logging',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'six>=1.13.0',
'jmespath>=0.7.1',
'iso8601>=0.1.10',
'colored>=1.4.2',
'toolz>=0.8.2',
'eliot>=1.6.0',
'win-unicode-console>=0.5;platform_system=="Windows"',
],
extras_require={
'test': ['testtools>=1.8.0'],
},
)