Skip to content

Commit

Permalink
Merge pull request #12 from pazembrz/add_version_to_setup
Browse files Browse the repository at this point in the history
setup: add version info
  • Loading branch information
pazembrz authored Dec 9, 2020
2 parents c14f5bd + 16e253f commit fdd31e0
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 fdd31e0

Please sign in to comment.