Skip to content

Commit

Permalink
update files
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfbunke committed Sep 7, 2018
1 parent 59d14d2 commit 8e0b929
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

-----


.. image:: https://openegoproject.files.wordpress.com/2017/02/open_ego_logo_breit.png?w=400


Expand Down
23 changes: 5 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import os
from os.path import abspath, dirname, join, isfile
from setuptools import find_packages, setup

__copyright__ = ("Flensburg University of Applied Sciences, "
Expand All @@ -9,32 +8,20 @@
__author__ = "wolf_bunke, maltesc"


# files
README_MD = "README.md"
README_RST = "README.rst"

cur_dir = abspath(dirname(__file__))
readme_md = join(cur_dir, README_MD)
readme_rst = join(cur_dir, README_RST)

long_description = ""
using_rst = False
try:
with open(readme_rst) as f:
long_description = f.read()
using_rst = True
except IOError:
with open(readme_md) as f:
long_description = f.read()

with open('README.rst') as f:
long_description = f.read()


setup(name='eGo',
version='0.3.1',
version='0.3.0',
author='wolfbunke, maltesc',
author_email='',
description=("A python package for distribution and transmission"
"grid analysis and optimization based eDisGo and eTraGo"),
long_description=long_description,
long_description_content_type="text/x-rst",
url='https://github.com/openego/eGo',
license="GNU Affero General Public License Version 3 (AGPL-3.0)",
packages=find_packages(),
Expand Down

0 comments on commit 8e0b929

Please sign in to comment.