-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (52 loc) · 1.68 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
56
57
58
59
# -*- 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"]
}
extras_require["all"] = list(
{pkg for pkgs in extras_require.values() for pkg in pkgs}
)
setup(
name="xia-pfcu",
author="Tiago Coutinho",
author_email="tcoutinho@cells.es",
version="1.6.0",
description="xia-pfcu library",
long_description=description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"PFCU = xia_pfcu.tango.server:main [tango]",
],
'sinstruments.device': [
'PFCU = xia_pfcu.simulator:PFCU [simulator]'
]
},
install_requires=requirements,
extras_require=extras_require,
classifiers=[
"Natural Language :: English",
"Intended Audience :: Developers",
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)'
],
license="LGPLv3+",
include_package_data=True,
keywords="XIA, PFCU, library, tango",
packages=find_packages(),
url="https://github.com/tiagocoutinho/xia-pfcu",
project_urls={
"Documentation": "https://github.com/tiagocoutinho/xia-pfcu",
"Source": "https://github.com/tiagocoutinho/xia-pfcu"
}
)