Skip to content

Commit

Permalink
Move metadata into setup.cfg (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
scasagrande committed Jan 27, 2022
1 parent 2690ed9 commit 5490969
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
12 changes: 0 additions & 12 deletions instruments/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,3 @@

from .config import load_instruments
from .units import ureg as units

# VERSION METADATA ###########################################################

__title__ = "instrumentkit"
__description__ = "Test and measurement communication library"
__uri__ = "https://instrumentkit.readthedocs.org/"

__author__ = "Steven Casagrande"
__email__ = "scasagrande@galvant.ca"

__license__ = "AGPLv3"
__copyright__ = "Copyright (c) 2012-2022 Steven Casagrande"
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[metadata]
name = instruments
version = attr: instruments._version.version
description = attr: instruments.__description__
author = attr: instruments.__author__
author_email = attr: instruments.__email__
url = attr: instruments.__uri__
description = Test and measurement communication library
author = Steven Casagrande
author_email = stevencasagrande@gmail.com
url = https://www.github.com/Galvant/InstrumentKit
long_description = file: README.rst
long_description_content_type = text/x-rst
license = AGPLv3
Expand Down Expand Up @@ -53,5 +53,5 @@ dev =
exclude =
instruments.tests

[wheel]
[bdist_wheel]
universal = 1

0 comments on commit 5490969

Please sign in to comment.