-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created the subdirectory brian2units where /units and /tests are stored Signed-off-by: Sorin Birchi <[email protected]>
- Loading branch information
Sorin Birchi
committed
Jun 11, 2024
1 parent
6e2142b
commit b6de52a
Showing
10 changed files
with
26 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# file generated by setuptools_scm | ||
# don't change, don't track in version control | ||
TYPE_CHECKING = False | ||
if TYPE_CHECKING: | ||
from typing import Tuple, Union | ||
VERSION_TUPLE = Tuple[Union[int, str], ...] | ||
else: | ||
VERSION_TUPLE = object | ||
|
||
version: str | ||
__version__: str | ||
__version_tuple__: VERSION_TUPLE | ||
version_tuple: VERSION_TUPLE | ||
|
||
__version__ = version = '1.1.dev3+g6e2142b.d20240611' | ||
__version_tuple__ = version_tuple = (1, 1, 'dev3', 'g6e2142b.d20240611') |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# from setuptools import setup, find_packages | ||
from setuptools import setup, find_packages | ||
|
||
# setup( | ||
# name='brian2units', | ||
# use_scm_version={ | ||
# "write_to": "brian2units/_version.py", | ||
# }, | ||
# setup_requires=['setuptools_scm'], | ||
# packages=find_packages(), | ||
# # other arguments... | ||
# ) | ||
setup( | ||
name='brian2units', | ||
use_scm_version={ | ||
"write_to": "brian2units/_version.py", | ||
}, | ||
setup_requires=['setuptools_scm'], | ||
packages=find_packages(), | ||
# other arguments... | ||
) |