forked from tebeka/crashlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 979 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import crashlog
with open('README.md') as fo:
long_description=fo.read()
setup(
name='crashlog',
version=crashlog.__version__,
description='Log & email uncaught exceptions',
long_description=long_description,
author='Miki Tebeka',
author_email='[email protected]',
license='MIT',
url='https://bitbucket.org/tebeka/crashlog',
py_modules=['crashlog'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
tests_require=['nose'],
test_suite = 'nose.collector',
)