forked from ALBA-Synchrotron/IcepapOSC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·55 lines (48 loc) · 1.47 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
53
54
55
from setuptools import setup
from setuptools import find_packages
# The version is updated automatically with bumpversion
# Do not update manually
__version = '0.10.4'
# windows installer:
# python setup.py bdist_wininst
long_description = """
Python application to monitor and tune IcePAP based systems.
"""
setup(
name="icepaposc",
description="Python IcePAP Extension",
version=__version,
author="Jarkko Inki and Roberto Homs-Puron",
author_email="[email protected]",
url="https://github.com/ALBA-Synchrotron/IcepapOCS",
packages=find_packages(),
include_package_data=True,
python_requires='>=3.5',
keywords='APP',
license="GPL",
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.5',
'Topic :: Communications',
'Topic :: Software Development :: Libraries',
],
entry_points={
'console_scripts': [
'icepaposc = icepaposc.__main__:main',
],
},
install_requires=[
"PyQt5",
"icepap>=3.6.1",
'pyqtgraph',
'numpy',
],
package_data={'': ['*.ui', ]}
)