Skip to content

Commit 9391d56

Browse files
author
Sasha
committed
.
1 parent faecb9c commit 9391d56

File tree

5 files changed

+24
-0
lines changed

5 files changed

+24
-0
lines changed

Diff for: requirements.dev.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pytest
2+
pytest-runner
3+
hypothesis
4+
flake8
5+
black
6+
pep8-naming

Diff for: requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
torch

Diff for: setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[aliases]
2+
test=pytest

Diff for: setup.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name="torch_struct",
5+
version="0.0.1",
6+
author="Alexander Rush",
7+
author_email="arush@cornell.edu",
8+
packages=["torchstruct", ],
9+
package_data={"torchstruct": []},
10+
url="https://github.com/harvardnlp/pytorch_struct",
11+
install_requires=["torch"],
12+
setup_requires=["pytest-runner"],
13+
tests_require=["pytest"]
14+
15+
)

Diff for: torch_struct/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)