Skip to content

Commit

Permalink
Add README and change break-line CRLF to LF and add long_description …
Browse files Browse the repository at this point in the history
…in Setup
  • Loading branch information
oriolpiera committed Sep 25, 2023
1 parent 7a7f310 commit 77a36ee
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 29 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# cchloader

Python package to create electricity curve (CCH) models from "Distribuidoras" files as CNMC specifications
61 changes: 32 additions & 29 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
from setuptools import setup, find_packages


setup(
name='cchloader',
version='0.4.2',
packages=find_packages(),
url='https://github.com/Som-Energia/cchloader',
license='GPLv3',
author='',
author_email='',
description='''Implementation based on sippers from GISCE
https://github.com/gisce/sippers''',
entry_points='''
[console_scripts]
usmartdata=usmartdata.cli:usmartdata
''',
package_data={
'cchloader': ['data/*']
},
install_requires=[
"raven",
"pymongo<3.0",
"osconf",
"marshmallow>=2.13.5",
"click"
],
test_suite='',
)
from setuptools import setup, find_packages

readme = open("README.md").read()

setup(
name='cchloader',
version='0.4.2',
packages=find_packages(),
url='https://github.com/Som-Energia/cchloader',
license='GPLv3',
author='',
author_email='',
long_description=readme,
long_description_content_type='text/markdown',
description='''Implementation based on sippers from GISCE
https://github.com/gisce/sippers''',
entry_points='''
[console_scripts]
usmartdata=usmartdata.cli:usmartdata
''',
package_data={
'cchloader': ['data/*']
},
install_requires=[
"raven",
"pymongo<3.0",
"osconf",
"marshmallow>=2.13.5",
"click"
],
test_suite='',
)

0 comments on commit 77a36ee

Please sign in to comment.