Skip to content

Commit

Permalink
ready for release of 1.1.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
BDonnot committed May 31, 2022
1 parent b3c27f7 commit d24ee58
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 8 deletions.
2 changes: 1 addition & 1 deletion AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Main Contributors:
- Mario Jothy
- Nicolas Megel
- Vincent Renault
- Benjamin Donnot

Further Contributions by:
- Camilo Romero
- Baltazar Donon
- Benjamin Donnot
1 change: 1 addition & 0 deletions chronix2grid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
# SPDX-License-Identifier: MPL-2.0
# This file is part of Chronix2Grid, A python package to generate "en-masse" chronics for loads and productions (thermal, renewable)

___version__ = "1.1.0"
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
author = 'Antoine Marot, Mario Jothy, Nicolas Megel'

# The full version, including alpha/beta/rc tags
release = '1.0.BETA'
release = '1.1.0'
version = '1.1'


# -- General configuration ---------------------------------------------------
Expand Down
29 changes: 23 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,44 @@
from setuptools import setup, find_packages
# Copyright (c) 2019-2022, RTE (https://www.rte-france.com)
# See AUTHORS.txt
# This Source Code Form is subject to the terms of the Mozilla Public License, version 2.0.
# If a copy of the Mozilla Public License, version 2.0 was not distributed with this file,
# you can obtain one at http://mozilla.org/MPL/2.0/.
# SPDX-License-Identifier: MPL-2.0
# This file is part of Chronix2Grid, A python package to generate "en-masse" chronics for loads and productions (thermal, renewable)

import os
from setuptools import setup, find_packages

this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()


setup(name='Chronix2Grid',
version='1.0.2',
version='1.1.0',
description='A python package to generate "en-masse" chronics for loads and productions (thermal, renewable)',
long_description='Chronix2Grid is a python package, providing a command-line application as well, that allows to generate synthetic but realistic consumption, renewable production, electricity loss (dissipation) and economic dispatched productions chronics given a power grid. Reference data that you provide will serve to calibrate the parameters so that the synthetic data reproduce some realistic criteria (KPIs) from the reference data.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English"
],
keywords='ML powergrid optmization RL power-systems chronics generation production load network',
author='Mario Jothy, Nicolas Megel, Vincent Renault',
author='Mario Jothy, Nicolas Megel, Vincent Renault, Benjamin Donnot',
author_email=' [email protected]',
url="https://github.com/BDonnot/ChroniX2Grid",
license='Mozilla Public License 2.0 (MPL 2.0)',
packages=find_packages(),
include_package_data=True,
platforms=["Windows", "Linux", "Mac OS-X", "Unix"],
install_requires=[
"click>=7.1.1",
"cufflinks>=0.17.3",
Expand Down

0 comments on commit d24ee58

Please sign in to comment.