diff --git a/devices/setup.cfg b/devices/setup.cfg deleted file mode 100644 index c67fdf70f29eb8e2c5342e60876a097f4213ccdd..0000000000000000000000000000000000000000 --- a/devices/setup.cfg +++ /dev/null @@ -1,13 +0,0 @@ - -# See the docstring in versioneer.py for instructions. Note that you must -# re-run 'versioneer.py setup' after changing this section, and commit the -# resulting files. - -[versioneer] -#VCS = git -#style = pep440 -#versionfile_source = -#versionfile_build = -#tag_prefix = -#parentdir_prefix = - diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..c37479ddd104c16056e8abb1249edd8a15e82655 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +# The order of packages is significant, because pip processes them in the order +# of appearance. Changing the order has an impact on the overall integration +# process, which may cause wedges in the gate later. + +pbr>=2.0 # Apache-2.0 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000000000000000000000000000000000000..46b24fd8e426469a4f76740ae39e94a8ebc65620 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,33 @@ +[metadata] +name = Tango Station Control +summary = LOFAR 2.0 Station Control +#description-file = +# README.rst +description-content-type = text/x-rst; charset=UTF-8 +author = ASTRON +#home-page = https://dantalion.nl +#project_urls = +# Bug Tracker = https://github.com/Dantali0n/RadLoggerPy/issues +# Documentation = https://docs.openstack.org/pbr/ +# Source Code = https://github.com/Dantali0n/radloggerpy +license = Apache-2 +classifier = + Environment :: Console + License :: Apache Software License + Operating System :: POSIX :: Linux + Programming Language :: Python + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + +[files] +packages = + devices + +[entry_points] +console_scripts = + SDP = devices.SDP:main + PCC = devices.PCC:main + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..41c6476e1e62e0f9acd05e34c1b8e403ccdd8d83 --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +import setuptools + +setuptools.setup(setup_requires=['pbr>=2.0.0'], pbr=True) \ No newline at end of file