-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.17 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
from setuptools import setup
import os
from radiopadre_client.default_config import __version__
build_root = os.path.dirname(__file__)
install_requires = ['six', 'psutil']
def readme():
"""Get readme content for package long description"""
with open(os.path.join(build_root, 'README.rst')) as f:
return f.read()
scripts = ["bin/run-radiopadre"]
setup(
name="radiopadre-client",
version=__version__,
install_requires=install_requires,
python_requires='>=2.7',
author="Oleg Smirnov",
author_email="[email protected]",
description=("Radiopadre client-side script"),
long_description=readme(),
license="MIT",
keywords="ipython notebook fits dataset resultset visualisation",
url="http://github.com/ratt-ru/radiopadre-client",
packages=['radiopadre_client', 'radiopadre_client.backends', 'iglesia'],
scripts=scripts,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
)