From fd729d9b3aad3e9513279684713244a007e615a0 Mon Sep 17 00:00:00 2001 From: jbellister-slac Date: Mon, 29 Aug 2022 10:57:42 -0700 Subject: [PATCH] BLD: Update setup file with new readme and a bit of extra information --- setup.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5a538cf..60f67fd 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,16 @@ from setuptools import setup +from pathlib import Path + +curr_dir = Path(__file__).parent +long_description = (curr_dir/'README.md').read_text() setup( name='slac-alarm-manager', - version='0.1.0', + version='1.0.0', description='Python interface for managing alarms', + long_description=long_description, + long_description_content_type='text/markdown', + author='SLAC National Accelerator Laboratory', url='https://github.com/slaclab/slac-alarm-manager', packages=['slam', 'slam_launcher', 'pydm_alarm_plugin'], install_requires=['kafka-python', 'pydm', 'qtpy'], @@ -11,4 +18,8 @@ 'console_scripts': ['slam=slam_launcher.main:main'], 'pydm.data_plugin': ['pydm_alarm_plugin=pydm_alarm_plugin.alarm_plugin:AlarmPlugin'] }, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Programming Language :: Python :: 3', + ] )