-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 796 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 796 Bytes
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="ELSA",
version="0.3",
author="Destin-informatique",
author_email="christophe.dupriez@destin-informatique.com",
url="http://www.destin-informatique.com",
description="Monitoring de la production par lots",
long_description=read('README.md'),
packages=find_packages(),
classifiers=[
'Operating System :: POSIX',
'Programming Language :: Python',
], install_requires=['python-barcode', 'requests', 'pySerial', 'rrdtool', 'web.py', 'pyownet', 'numpy', 'smbus2','influx_line_protocol']
)
# python-barcode
# requests
# serial
# rrdtool
# csv
# web.py
# pyownet
# serial
# numpy
# smbus2