diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..e909240 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,24 @@ +[metadata] +name = grum +version = 0.0.1 +description = GUI for Remote Unified Monitoring +long_description = file: README.md +long_description_content_type = text/markdown +url = https://gitlab.psi.ch/augustin_s/grum +project_urls = + Bug Tracker = https://gitlab.psi.ch/augustin_s/grum/issues +classifiers = + Programming Language :: Python :: 3 + License :: OSI Approved :: MIT License + Operating System :: OS Independent + +[options] +package_dir = + = . +packages = find: +python_requires = >=3.8 + +[options.packages.find] +where = . + + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ae37d03 --- /dev/null +++ b/setup.py @@ -0,0 +1,4 @@ +from setuptools import setup + +if __name__ == "__main__": + setup(install_requires=["pyqt5", "pyqtgraph"])