Skip to content

Commit

Permalink
return to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JessyBarrette committed Dec 9, 2024
1 parent c21b027 commit f206d6c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 556 deletions.
1 change: 0 additions & 1 deletion firebase_to_xml/.python-version

This file was deleted.

26 changes: 0 additions & 26 deletions firebase_to_xml/pyproject.toml

This file was deleted.

32 changes: 32 additions & 0 deletions firebase_to_xml/setup.py
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",
],
},
)
Loading

0 comments on commit f206d6c

Please sign in to comment.