-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
39 lines (35 loc) · 1.4 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
#!/usr/bin/env python
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import hanging_threads
import os
HERE = os.path.dirname(__file__)
README_RST = os.path.join(HERE, "README.rst")
with open(README_RST) as file:
long_desciption = file.read()
setup(name='hanging_threads',
version=hanging_threads.__version__,
description='Deadlocks? Detect where your threads hang in Python with one import.',
long_description=long_desciption,
author=hanging_threads.__author__,
author_email='niccokunzmann' + '@' + 'gmail.com',
url='https://github.com/niccokunzmann/hanging_threads',
py_modules=['hanging_threads'],
license='MIT',
platforms='any',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)