Skip to content

Commit

Permalink
Add setup.py and move folders
Browse files Browse the repository at this point in the history
  • Loading branch information
gjover authored and Sicilia Developer Controls committed May 17, 2021
1 parent 64071a1 commit 8a225e0
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# sardana-linkam

Sardana plugins for [Linkam stages](https://www.linkam.co.uk/temperature-controlled-stages).
File renamed without changes.
File renamed without changes.
File renamed without changes.
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.0.0",
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"]
)

0 comments on commit 8a225e0

Please sign in to comment.