From 1aeb916058a2770408fe3ae6f34fcc493f2b4fb9 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sun, 1 May 2016 17:23:55 +0200 Subject: [PATCH] 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. --- setup.cfg | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..2d74c58 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,6 @@ +[egg_info] +tag_build = dev +tag_date = true + +[aliases] +release = egg_info -RDb '' diff --git a/setup.py b/setup.py index 6cf98cc..27ff9e3 100644 --- a/setup.py +++ b/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"