-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from calebweinreb/versioneer
Automatic versioning
- Loading branch information
Showing
5 changed files
with
3,057 additions
and
33 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,46 @@ | ||
[metadata] | ||
name = snub | ||
author = Caleb Weinreb | ||
author_email = [email protected] | ||
url = https://github.com/dattalab/SNUB | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
packages = find: | ||
include_package_data = True | ||
python_requires = >=3.8 | ||
install_requires = | ||
PyQt5 | ||
numpy | ||
scikit-learn | ||
tqdm | ||
cmapy | ||
interlap | ||
numba | ||
vispy | ||
imageio | ||
imageio-ffmpeg | ||
umap-learn | ||
rastermap | ||
ipykernel | ||
pyqtgraph | ||
networkx | ||
opencv-python-headless | ||
vidio>=0.0.3 | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
snub = snub.gui.main:run | ||
|
||
[options.package_data] | ||
* = *.md | ||
|
||
[versioneer] | ||
VCS = git | ||
style = pep440 | ||
versionfile_source = snub/_version.py | ||
versionfile_build = snub/_version.py | ||
tag_prefix = | ||
parentdir_prefix = |
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,40 +1,11 @@ | ||
import setuptools | ||
import versioneer | ||
|
||
with open("README.md", "r") as f: | ||
with open("README.md", "r", encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
setuptools.setup( | ||
name="snub", | ||
version="0.0.3", | ||
author="Caleb Weinreb", | ||
author_email="[email protected]", | ||
description="Systems neuro browser", | ||
include_package_data=True, | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent", | ||
], | ||
entry_points={"console_scripts": ["snub = snub.gui.main:run"]}, | ||
python_requires=">=3.8", | ||
install_requires=[ | ||
"PyQt5", | ||
"numpy", | ||
"scikit-learn", | ||
"tqdm", | ||
"cmapy", | ||
"interlap", | ||
"numba", | ||
"vispy", | ||
"imageio", | ||
"imageio-ffmpeg", | ||
"umap-learn", | ||
"rastermap", | ||
"ipykernel", | ||
"pyqtgraph", | ||
"networkx", | ||
"opencv-python-headless", | ||
"vidio>=0.0.3", | ||
], | ||
url="https://github.com/calebweinreb/SNUB", | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
) |
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,2 +1,6 @@ | ||
from . import io | ||
from . import gui | ||
|
||
from . import _version | ||
|
||
__version__ = _version.get_versions()["version"] |
Oops, something went wrong.