Don't import jandd.sphinxext.ip in setup.py
This commit removes the import of jandd.sphinxext.ip in setup.py to allow bootstrapping without installed requirements. A setup.cfg defining options for egg_info has been added.
This commit is contained in:
parent
fc1fae8f37
commit
1aeb916058
2 changed files with 7 additions and 1 deletions
6
setup.cfg
Normal file
6
setup.cfg
Normal file
|
@ -0,0 +1,6 @@
|
|||
[egg_info]
|
||||
tag_build = dev
|
||||
tag_date = true
|
||||
|
||||
[aliases]
|
||||
release = egg_info -RDb ''
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@
|
|||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
from jandd.sphinxext.ip import __version__ as version
|
||||
version = '0.1.0'
|
||||
|
||||
with open('README.rst') as readme:
|
||||
description = readme.read() + "\n\n"
|
||||
|
|
Loading…
Reference in a new issue