-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated requirements, fixed pandas issue
- Loading branch information
1 parent
d349b46
commit 9a843f0
Showing
3 changed files
with
15 additions
and
11 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
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 |
---|---|---|
|
@@ -10,4 +10,7 @@ click | |
uvicorn[standard] | ||
pytest | ||
fastapi | ||
jinja2 | ||
jinja2 | ||
json5 | ||
polars | ||
pyarrow |
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,34 +1,35 @@ | ||
""" Package setup file. """ | ||
|
||
from setuptools import setup, find_packages | ||
|
||
with open("README.md","r") as fh: | ||
with open("README.md","r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
with open('requirements.txt') as f: | ||
with open("requirements.txt", "r", encoding="utf-8") as f: | ||
requirements = f.read().splitlines() | ||
|
||
setup( | ||
name='emerge', | ||
name='NREL-emerge', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
version='v2.0.0-alpha', | ||
version='1.0.0', | ||
description='Emerging technologies Management and Risk evaluation on distributions Grid Evolution', | ||
author='Kapil Duwadi', | ||
author_email='[email protected]', | ||
packages=find_packages("src"), | ||
# package_data={".//dssdashboard//assets":["*.css","*.png"]}, | ||
packages=find_packages(), | ||
url="https://github.com/NREL/EMeRGE", | ||
keywords="Distribution System DER technologies management risk impact analysis", | ||
install_requires=requirements, | ||
package_dir={"emerge": "emerge"}, | ||
# package_dir={"emerge": "emerge"}, | ||
entry_points={ | ||
"console_scripts": [ | ||
"emerge=emerge.cli.cli:cli" | ||
], | ||
}, | ||
python_requires=">=3.8", | ||
python_requires=">=3.10", | ||
classifiers=[ | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Operating System :: OS Independent" | ||
] | ||
) |