-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add README and change break-line CRLF to LF and add long_description …
…in Setup
- Loading branch information
1 parent
7a7f310
commit 77a36ee
Showing
2 changed files
with
35 additions
and
29 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# cchloader | ||
|
||
Python package to create electricity curve (CCH) models from "Distribuidoras" files as CNMC specifications |
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 |
---|---|---|
@@ -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='', | ||
) |