Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilwoodruff committed Feb 8, 2024
1 parent 7d4f061 commit d4d5cd5
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
**/*.h5
**/*.pyc
**/*.csv.gz
**/*.egg-info
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
install:
pip install -r requirements.txt
pip install -e .

test:
pytest .
Expand Down
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import setup, find_packages

setup(
name="tax_microdata_benchmarking",
version="0.1.0",
packages=find_packages(),
install_requires=[
"policyengine_us",
"taxcalc",
"paramtools",
"pytest",
"black",
],
)
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_basic_flat_file.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
def test_flat_file_runs():
import taxcalc as tc
from initial_flat_file.create_flat_file import create_flat_file
from tax_microdata_benchmarking.create_flat_file import create_flat_file

create_flat_file()

Expand Down

0 comments on commit d4d5cd5

Please sign in to comment.