forked from ska-sa/katcp-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (46 loc) · 1.38 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="katcp",
description="Karoo Array Telescope Communication Protocol library",
author="SKA SA KAT-7 / MeerKAT CAM team",
author_email="[email protected]",
packages=find_packages(),
scripts=[
"scripts/katcp-exampleserver.py",
"scripts/katcp-exampleclient.py",
],
url='https://github.com/ska-sa/katcp-python',
download_url='http://pypi.python.org/pypi/katcp',
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Astronomy",
],
platforms=["OS Independent"],
keywords="kat kat7 ska MeerKAT",
setup_requires=["katversion"],
use_katversion=True,
install_requires=[
"ply",
"tornado>=4.3, <5",
"futures",
"future"
],
# run tests and install these requirements with python setup.py nosetests
tests_require=[
"unittest2",
"nose",
"mock",
"pylint",
"coverage",
"nosexcover"
],
zip_safe=False,
test_suite="nose.collector",
)