Skip to content

Commit 66d970e

Browse files
committed
Add basic dir structure
1 parent db3d154 commit 66d970e

File tree

4 files changed

+106
-0
lines changed

4 files changed

+106
-0
lines changed

.gitignore

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.nox/
42+
.coverage
43+
.coverage.*
44+
.cache
45+
nosetests.xml
46+
coverage.xml
47+
*.cover
48+
*.py,cover
49+
.hypothesis/
50+
.pytest_cache/
51+
52+
# Virtual environments
53+
.env
54+
.venv
55+
env/
56+
venv/
57+
ENV/
58+
env.bak/
59+
venv.bak/
60+
61+
# mypy
62+
.mypy_cache/
63+
.dmypy.json
64+
dmypy.json
65+
66+
# Pyre type checker
67+
.pyre/
68+
69+
# IDE
70+
.vscode/
71+
.idea/
72+
*.swp
73+
*.swo
74+
*~
75+
76+
# OS
77+
.DS_Store
78+
.DS_Store?
79+
._*
80+
.Spotlight-V100
81+
.Trashes
82+
ehthumbs.db
83+
Thumbs.db
84+
85+
# Logs
86+
*.log

pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[build-system]
2+
requires = ["setuptools>=45", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "envtorch"
7+
version = "0.0.0"
8+
requires-python = ">=3.8"
9+
dependencies = [
10+
"torch>=1.9.0",
11+
"numpy>=1.19.0",
12+
]
13+
14+
[tool.setuptools]
15+
package-dir = {"" = "src"}
16+
17+
[tool.setuptools.packages.find]
18+
where = ["src"]

src/envtorch/core/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Core SDK functionality

src/envtorch/envs/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Environment implementations

0 commit comments

Comments
 (0)