-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 836 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
import sys
try:
# Setuptools entry point is slow.
# If we have `festentrypoint` then use a fast entry point
import fastentrypoints
except ImportError:
sys.stdout.write('Not using fastentrypoints\n')
pass
import setuptools
import os
HERE = os.path.dirname(__file__)
setuptools.setup(
name='huntrace',
version="0.1.0",
author='Tal Wrii',
author_email='[email protected]',
description='',
license='GPLv3',
keywords='',
url='',
packages=['huntrace'],
long_description='See https://github.com/talwrii/huntrace',
entry_points={
'console_scripts': ['huntrace=huntrace.huntrace:main']
},
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)"
],
test_suite='nose.collector',
install_requires=['hunter']
)