-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.13 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
# -*- coding: utf-8 -*-
"""
Gaico
~~~~~
Gaico is a collection of small useful functions. Nothing fancy or
revolutionary, just little things I use in several projects. The primary
goal of this package is to provide pure python implementations of network
tools (like ping).
"""
from setuptools import setup, find_packages
setup(
name='gaico',
version='0.2.0',
description='A set of network tools written in pure Python with gevent.',
long_description=__doc__,
author='Laurent Meunier',
author_email='[email protected]',
url='https://github.com/lmeunier/gaico',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['gevent>=1.1.0'],
test_suite="tests",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: Utilities',
]
)