forked from RIPE-NCC/ripe-atlas-cousteau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (51 loc) · 1.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
from os.path import abspath, dirname, join
from setuptools import setup
# import manually __version__ variable
__version__ = None
exec(open('ripe/atlas/cousteau/version.py').read())
install_requires = [
"python-dateutil", "socketIO-client>=0.6.5", "requests>=2.7.0"]
tests_require = [
"pbr<=1.6",
"nose",
"coverage",
"mock",
"jsonschema"
]
# Get proper long description for package
current_dir = dirname(abspath(__file__))
description = open(join(current_dir, "README.rst")).read()
changes = open(join(current_dir, "CHANGES.rst")).read()
long_description = '\n\n'.join([description, changes])
setup(
name="ripe.atlas.cousteau",
version=__version__,
packages=["ripe", "ripe.atlas", "ripe.atlas.cousteau"],
namespace_packages=["ripe", "ripe.atlas"],
include_package_data=True,
license="GPLv3",
url="https://github.com/RIPE-NCC/ripe-atlas-cousteau",
description="Python wrapper for RIPE Atlas API",
long_description=long_description,
author="RIPE Atlas Development Team",
author_email="[email protected]",
maintainer="Andreas Strikos",
maintainer_email="[email protected]",
install_requires=install_requires,
tests_require=tests_require,
test_suite="nose.collector",
keywords=['RIPE', 'RIPE NCC', 'RIPE Atlas'],
classifiers=[
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)