-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c21b027
commit f206d6c
Showing
4 changed files
with
32 additions
and
556 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
#!/usr/bin/env python3 | ||
|
||
""" | ||
Setup file for firebase_to_yaml | ||
""" | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="firebase_to_xml", | ||
version="0.2", | ||
description="Python module translates metadata records from" + "Firebase into XML", | ||
url="https://github.com/cioos-siooc/metadata-entry-form", | ||
packages=["firebase_to_xml"], | ||
package_data={'firebase_to_xml': ['resources/*.json']}, | ||
include_package_data=True, | ||
|
||
install_requires=[ | ||
"google-auth>=2.36.0", | ||
"google-oauth>=1.0.1", | ||
"loguru>=0.7.3", | ||
"python-dotenv>=1.0.1", | ||
"metadata_xml@git+https://github.com/cioos-siooc/metadata-xml.git", | ||
"loguru>=0.7.3", | ||
"tqdm>=4.67.1", | ||
], | ||
extras_require={ | ||
'dev': [ | ||
"ruff>=0.8.2", | ||
], | ||
}, | ||
) |
Oops, something went wrong.