1
0
Fork 0
mirror of https://github.com/NaN-tic/trydoc.git synced 2023-12-14 02:03:42 +01:00

Define version directly in setup.py

Otherwise it's not possible to install the package as it tries to import
the dependencies which are not installed yet.
This commit is contained in:
Sergi Almacellas Abellana 2016-07-29 09:50:07 +02:00
parent 27225a2975
commit 91790763ca
2 changed files with 1 additions and 3 deletions

View file

@ -1,12 +1,11 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sphinxcontrib.trydoc
with open('README') as stream:
long_desc = stream.read()
version = sphinxcontrib.trydoc.__version__
version = "0.11"
requires = [
'path.py',
'simplejson',

View file

@ -7,7 +7,6 @@ from __future__ import print_function
:copyright: Copyright 2012-16 by NaN Projectes de Programari Lliure, S.L.
:license: BSD, see LICENSE for details.
"""
__version__ = "0.11"
from path import path
import os