Skip to content

Commit

Permalink
bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mscarey committed Jun 11, 2019
1 parent b8196d0 commit b12db41
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include readme.md license.md
4 changes: 3 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ allow_prereleases = true

[packages]
beautifulsoup4 = ">=4.7.1"
ipykernel = "*"
lxml = "*"
pint = ">=0.9"
requests = "*"
authorityspoke = {path = ".",editable = true}
ipykernel = "*"

[dev-packages]
black = "*"
Expand All @@ -28,6 +28,8 @@ sphinx-autodoc-typehints = "*"
pipenv-to-requirements = "*"
wily = "*"
coveralls = "*"
setuptools = "*"
wheel = "*"

[requires]
python_version = "3.7.3"
2 changes: 1 addition & 1 deletion authorityspoke/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from .opinions import Opinion
from .rules import Rule, ProceduralRule

__version__ = "0.0.1"
__version__ = "0.1.0"
1 change: 0 additions & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
beautifulsoup4>=4.7.1
ipykernel
lxml
pint>=0.9
requests
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

-e .
beautifulsoup4>=4.7.1
ipykernel
lxml
pint>=0.9
requests
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,26 @@

setuptools.setup(
name="AuthoritySpoke",
version="0.0.1",
version="0.1.0",
author="Matt Carey",
author_email="matt@authorityspoke.com",
description="a tool for constructing data about legal rules",
description="tool for managing structured data about legal authority",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mscarey/AuthoritySpoke",
packages=setuptools.find_packages(),
packages=setuptools.find_packages(
exclude=["tests", "*.tests", "*.tests.*", "tests.*"]
),
install_requires=["beautifulsoup4", "lxml", "pint", "requests", "ipykernel"],
extras_require={"jupyter notebooks": "jupyter"},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 3 - Alpha",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Sociology :: History",
],
)
include_package_data=True,
)
2 changes: 1 addition & 1 deletion tests/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from authorityspoke.opinions import Opinion

pytestmark = pytest.mark.skip("don't feel like calling API")
# pytestmark = pytest.mark.skip("don't want to call API")


class TestDownload:
Expand Down

0 comments on commit b12db41

Please sign in to comment.