Skip to content

Commit

Permalink
use setuptools-scm
Browse files Browse the repository at this point in the history
  • Loading branch information
dpausp committed Aug 24, 2019
1 parent 7ff4955 commit 8cf6d06
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[metadata]
name = more.babel_i18n
version = file: src/more/babel_i18n/VERSION
description = i18n/l10n support for Morepath applications and Jinja2 templates
author = Tobias dpausp and flask-babel(plus) contributors
author_email = [email protected]
Expand Down
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
setup(
package_dir={'': 'src'},
packages=find_namespace_packages(where='src'),
python_requires="~=3.7",
python_requires='~=3.7',
include_package_data=True,
install_requires = [
"Babel >= 1.0",
"morepath >= 0.18",
"Jinja2 >= 2.10",
]
'Babel >= 1.0',
'morepath >= 0.18',
'Jinja2 >= 2.10',
],
use_scm_version=True,
setup_requires=['setuptools_scm']
)
1 change: 1 addition & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ in pkgs.stdenv.mkDerivation {
mypy
pylint
python
setuptools_scm
twine
wheel
]);
Expand Down
1 change: 0 additions & 1 deletion src/more/babel_i18n/VERSION

This file was deleted.

0 comments on commit 8cf6d06

Please sign in to comment.