mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
* initial checkin * gitignore and docker-compose update * readme update and error on hud * encoding issue * one more small README change * data roadmap re-strcuture * pyproject sort * small update to score output folders * checkpoint * couple of last fixes
21 lines
629 B
Python
21 lines
629 B
Python
"""Setup script for `data_roadmap` package."""
|
|
import os
|
|
|
|
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
# TODO: replace this with `poetry`. https://github.com/usds/justice40-tool/issues/57
|
|
_PACKAGE_DIRECTORY = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
with open(os.path.join(_PACKAGE_DIRECTORY, "requirements.txt")) as f:
|
|
requirements = f.readlines()
|
|
|
|
setup(
|
|
name="data_roadmap",
|
|
description="Data roadmap package",
|
|
author="CEJST Development Team",
|
|
author_email="justice40open@usds.gov",
|
|
install_requires=requirements,
|
|
include_package_data=True,
|
|
packages=find_packages(),
|
|
)
|