-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moved the metadata into setup.cfg
.
#47
base: master
Are you sure you want to change the base?
Conversation
Thanks for your contribution!
Can you please explain how that's supposed to work? The tests are failing due to the missing (not yet generated?) |
e37c07f
to
4c6feea
Compare
You used to have version hardcoded into package, because fetching it using I have added it. Also I saw that the test for The decrease in coverage is because the code that has not been tested (but that has been executed) is no longer executed, the tests succeed though. |
Added `pyproject.toml`. Version is now fetched and populated automatically from git tags using `setuptools_scm`. Metadata stored in source files is fetched using `read_version`. Got rid of raw scripts, using `console_scripts` entry point since now. Dropped 2.7 out of Travis CI due to `File "tests.py", line 334, in <module> m = __import__(module, fromlist=[module]) TypeError: Item in "from list'' must be str, not unicode` error.
I've opened the discussion about dropping Python 2.7 support at #48. |
Added
pyproject.toml
.Version is now fetched and populated automatically from git tags using
setuptools_scm
.Metadata stored in source files is fetched using
read_version
.Got rid of raw scripts, using
console_scripts
entry point since now.