Add a manifest so it packages correctly

This commit is contained in:
Olivia Appleton 2022-10-12 19:30:49 -04:00
parent 20a19e56c8
commit 964db328d6
GPG Key ID: AF65A9CA0FF7FD69
5 changed files with 13 additions and 6 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0.73
current_version = 0.6.0.74
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.(?P<build>\d+)
serialize = {major}.{minor}.{patch}.{build}

7
MANIFEST.in Normal file
View File

@ -0,0 +1,7 @@
include Makefile
graft src
prune **/.benchmarks
prune **/.vscode
prune **/.github
prune **/.mypy_cache
global-exclude *.pyc .*

View File

@ -77,11 +77,11 @@ Every time you run `example.py`, it goes through the following steps:
- [ ] disable warning about default explain_specific if classvar acknowledges default behavior as intended
- [ ] Make comparison rules (>, <, etc)
- [ ] test GitHub rules using real examples
- [ ] test register_db
- [ ] test ManifoldMarketMixin
- [x] test register_db
- [x] test ManifoldMarketMixin (done implicitly via the Other rules)
- [x] test manifold user rules using real examples
- [x] test manifold this rules using real examples
- [ ] test manifold other rules using real examples
- [x] test manifold other rules using real examples
- [ ] test market.py (1/8)
- [x] from_url
- [ ] explain_abstract

View File

@ -2,7 +2,7 @@
name = ManifoldMarketManager
author = Olivia Appleton
author_email = Liv@OliviaAppleton.com
version = 0.6.0.73
version = 0.6.0.74
description = Tools and market management for manifold.markets
long_description = file: README.md
long_description_content_type = text/markdown

View File

@ -145,7 +145,7 @@ register_converter("Rule", loads)
register_adapter(market.Market, dumps)
register_converter("Market", loads)
VERSION = "0.6.0.73"
VERSION = "0.6.0.74"
__version_info__ = tuple(int(x) for x in VERSION.split('.'))
__all__ = [
"__version_info__", "VERSION", "DoResolveRule", "ResolutionValueRule", "Rule", "Market", "get_client", "rule",