-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
55 lines (48 loc) · 1.51 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
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
requirements = ["connio>=0.1"]
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="gepace",
author="Tiago Coutinho",
author_email="tcoutinho@cells.es",
version="1.1.3",
description="GE Pace library",
long_description=description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"GEPace = gepace.tango.server:main [tango]",
],
'sinstruments.device': [
'Pace = gepace.simulator:Pace [simulator]'
]
},
extras_require=extras_require,
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="GE, pace, pace 5000, pace 6000, library, tango, simulator",
packages=find_packages(),
python_requires=">=3.5",
url="https://github.com/tiagocoutinho/gepace"
)