forked from PyPSA/PyPSA
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include a more friendly package format with setup.py etc.
- Loading branch information
Showing
10 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,11 @@ test/results/* | |
|
||
|
||
doc/_build/ | ||
|
||
build/ | ||
|
||
dist/ | ||
|
||
pypsa.egg-info/ | ||
|
||
files.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[bdist_wheel] | ||
universal = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
|
||
|
||
from setuptools import setup, find_packages | ||
from codecs import open | ||
|
||
|
||
with open('README.rst', encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='pypsa', | ||
version='0.2', | ||
author='Tom Brown (FIAS), Jonas Hoersch (FIAS)', | ||
author_email='[email protected]', | ||
description='Python for Power Systems Analysis', | ||
long_description=long_description, | ||
url='https://github.com/FRESNA/PyPSA', | ||
license='GPLv2', | ||
packages=find_packages(exclude=['doc', 'test']), | ||
install_requires=['numpy','pyomo','scipy'], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Console', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'Natural Language :: English', | ||
'Operating System :: OS Independent', | ||
]) |