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:
Jan Dittberner 2016-05-01 17:23:55 +02:00
parent fc1fae8f37
commit 1aeb916058
2 changed files with 7 additions and 1 deletions

6
setup.cfg Normal file
View file

@ -0,0 +1,6 @@
[egg_info]
tag_build = dev
tag_date = true
[aliases]
release = egg_info -RDb ''

View file

@ -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"