-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 771 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 771 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
33
34
import os
from setuptools import setup, find_packages
basedir = os.path.dirname(__file__)
with open(os.path.join(basedir, 'VERSION'), 'r') as _f:
__version__ = _f.read().strip()
setup(
name='imautils',
version=__version__,
description="LNLS magnet's group utilities package",
url='https://github.com/lnls-ima/ima-utils',
author='lnls-ima',
license='GNU License',
packages=find_packages(),
install_requires=[
'numpy',
'pyvisa',
'pyserial',
'minimalmodbus',
'paramiko',
'matplotlib',
'qtpy',
'pymongo',
],
package_data={'imautils': ['VERSION']},
include_package_data=True,
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False,
)