1
|
|
|
import setuptools |
2
|
|
|
from rsudp import _version |
3
|
|
|
|
4
|
|
|
with open("README.md", "r") as fh: |
5
|
|
|
long_description = fh.read() |
6
|
|
|
|
7
|
|
|
|
8
|
|
|
setuptools.setup( |
9
|
|
|
name="rsudp", |
10
|
|
|
version=_version.version, |
11
|
|
|
author="Ian Nesbitt", |
12
|
|
|
author_email="[email protected]", |
13
|
|
|
license='GPLv3', |
14
|
|
|
description="Tools for receiving and interacting with Raspberry Shake UDP data", |
15
|
|
|
long_description=long_description, |
16
|
|
|
long_description_content_type="text/markdown", |
17
|
|
|
url="https://github.com/raspishake/rsudp", |
18
|
|
|
packages=setuptools.find_packages(), |
19
|
|
|
include_package_data=True, |
20
|
|
|
install_requires=['obspy', 'numpy', 'matplotlib<3.2', 'pydub', 'twython', |
21
|
|
|
'python-telegram-bot<=13.11'], |
22
|
|
|
entry_points = { |
23
|
|
|
'console_scripts': [ |
24
|
|
|
'rs-packetloss=rsudp.packetloss:main', |
25
|
|
|
'rs-client=rsudp.client:main', |
26
|
|
|
'rs-test=rsudp.client:test', |
27
|
|
|
'packetize=rsudp.packetize:main', |
28
|
|
|
'rs-settings=rsudp.entry_points:ep_edit_settings', |
29
|
|
|
'rs-log=rsudp.entry_points:ep_cat_log', |
30
|
|
|
'rs-tailf=rsudp.entry_points:ep_tailf_log', |
31
|
|
|
], |
32
|
|
|
}, |
33
|
|
|
classifiers=[ |
34
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
35
|
|
|
"Programming Language :: Python :: 3.6", |
36
|
|
|
"Programming Language :: Python :: 3.7", |
37
|
|
|
"Operating System :: OS Independent", |
38
|
|
|
"Framework :: Matplotlib", |
39
|
|
|
"Topic :: Scientific/Engineering :: Physics", |
40
|
|
|
"Intended Audience :: Education", |
41
|
|
|
"Intended Audience :: End Users/Desktop", |
42
|
|
|
"Intended Audience :: Science/Research", |
43
|
|
|
"Intended Audience :: Developers", |
44
|
|
|
"Natural Language :: English", |
45
|
|
|
"Development Status :: 5 - Production/Stable", |
46
|
|
|
], |
47
|
|
|
) |
48
|
|
|
|