-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1019 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
setup(
name="sardana_linkam",
version="1.2.1",
author="ALBA Controls Group",
author_email="[email protected]",
maintainer="Gabriel Jover-Manas",
maintainer_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
],
url="https://github.com/ALBA-Synchrotron/sardana-linkam",
packages=find_packages(),
description="sardana linkam controllers & macros",
license="GPLv3",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="linkam,sardana",
python_requires=">=3.5",
install_requires=["sardana", "pytango"]
)