-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (46 loc) · 1.57 KB
/
setup.py
File metadata and controls
53 lines (46 loc) · 1.57 KB
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
"""Setup file for ArchFX Broker data-tools package."""
from distutils.util import convert_path
from setuptools import setup, find_packages
version = {}
with open(convert_path("cfx_recorder/version.py")) as fp:
exec(fp.read(), version)
setup(
name="cfx-recorder",
packages=find_packages(exclude=("test",)),
version=version["__version__"],
license="proprietary",
install_requires=[
"amqp>=5.0.0,<6.0.0",
"python-dateutil>=2.8.0,<3"
],
package_data={
'cfx_recorder': ['cfx_recorder/py.typed'],
},
entry_points={
'console_scripts': [
'cfx-recorder = cfx_recorder.scripts.cfx_recorder:main'
]
},
include_package_data=True,
description="Administrative tools and utilities for managing data on the ArchFX Broker",
author="Arch",
author_email="info@archsys.io",
url="https://github.com/iotile/archfx_broker/src/data_tools",
keywords=["iotile", "arch", "industrial"],
python_requires=">=3.7, <4",
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules"
],
long_description="""\
ArchFX Broker Data Tools
--------------------------
Python based classes and tools for inspecting and exporting data stored on the archfx broker.
See https://www.archsys.io
"""
)