-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version, remove email, update author (#684)
* add pyproject.toml to comply with pep518
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 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,3 @@ | ||
[build-system] | ||
# Minimum requirements for the build system to execute. | ||
requires = ["setuptools", "wheel"] # PEP 508 specifications. |
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 |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
from setuptools import find_packages | ||
|
||
|
||
VERSION = "1.4.5" | ||
VERSION = "1.4.6" | ||
|
||
REQS = ['enum34>=1.0.4', | ||
'future>=0.16.0', | ||
|
@@ -49,9 +49,8 @@ | |
|
||
config = { | ||
'description': 'NeuroM: a light-weight neuron morphology analysis package', | ||
'author': 'BBP Algorithm Development Team', | ||
'author': 'BBP Neuroscientific Software Engineering', | ||
'url': 'http://https://github.com/BlueBrain/NeuroM', | ||
'author_email': '[email protected]', | ||
'version': VERSION, | ||
'install_requires': REQS, | ||
'packages': find_packages(), | ||
|