-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (47 loc) · 1.5 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
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
requirements = ['connio>=0.2']
with open("README.md") as f:
description = f.read()
extras_require={
"tango": ["pytango"],
"simulator": ["sinstruments>=1.3", "scpi-protocol>=0.2"]
}
extras_require["all"] = list(
{pkg for pkgs in extras_require.values() for pkg in pkgs}
)
setup(
name='cryocon',
author="Jairo Moldes",
author_email='jmoldes@cells.es',
version='3.1.12',
description="CryCon library",
long_description=description,
long_description_content_type="text/markdown",
extras_require=extras_require,
entry_points={
'console_scripts': [
'CryoCon = cryocon.tango.server:main [tango]',
],
'sinstruments.device': [
'CryoCon = cryocon.simulator:CryoCon [simulator]'
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
install_requires=requirements,
license="LGPLv3",
include_package_data=True,
keywords='cryocon, library, tango, simulator',
packages=find_packages(),
python_requires=">=3.5",
url='https://github.com/ALBA-Synchrotron/cryocon')