-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
52 lines (49 loc) · 1.84 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
import setuptools
from rsudp import _version
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="rsudp",
version=_version.version,
author="Ian Nesbitt",
author_email="[email protected]",
license='GPLv3',
description="Tools for receiving and interacting with Raspberry Shake UDP data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/raspishake/rsudp",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=['obspy',
'numpy>=2.0.0,<3',
'matplotlib>3.2,<4',
'pydub',
'twython',
'python-telegram-bot'],
entry_points = {
'console_scripts': [
'rs-packetloss=rsudp.packetloss:main',
'rs-client=rsudp.client:main',
'rs-test=rsudp.client:test',
'packetize=rsudp.packetize:main',
'rs-settings=rsudp.entry_points:ep_edit_settings',
'rs-log=rsudp.entry_points:ep_cat_log',
'rs-tailf=rsudp.entry_points:ep_tailf_log',
],
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Framework :: Matplotlib",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Development Status :: 5 - Production/Stable",
],
)