-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (28 loc) · 803 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
36
37
38
"""
Glance
------
Highlight stack traces in the terminal for easier glancing.
Links
`````
* `Website <http://github.com/joeyespo/glance>`_
"""
import os
from setuptools import setup, find_packages
def read(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read()
setup(
name='glance',
version='0.0.1',
description='Highlight stack traces in the terminal for easier glancing.',
long_description=__doc__,
author='Joe Esposito',
author_email='[email protected]',
url='http://github.com/joeyespo/glance',
license='MIT',
platforms='any',
packages=find_packages(),
install_requires=read('requirements.txt').splitlines(),
zip_safe=False,
entry_points={'console_scripts': ['glance = glance:main']},
)