Skip to content

Commit

Permalink
setup: add version info
Browse files Browse the repository at this point in the history
  • Loading branch information
pazembrz committed Dec 9, 2020
1 parent aba1e1d commit 16e253f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

"""jsonschema2rst and related tools bundle."""

import pkg_resources
from setuptools import find_packages, setup

URL = 'https://github.com/inspirehep/jsonschema2rst'
Expand All @@ -47,6 +46,10 @@
'six',
]

setup_requires = [
'autosemver==0.5.5',
]


setup(
name='jsonschema2rst',
Expand All @@ -58,6 +61,7 @@
packages=find_packages(),
install_requires=install_requires + tests_require,
tests_require=tests_require,
setup_requires=setup_requires,
long_description=readme,
url=URL,
autosemver=True,
Expand Down

0 comments on commit 16e253f

Please sign in to comment.