Skip to content

Commit c3bf3d5

Browse files
committed
Add setup file and init files.
1 parent 0e27bcb commit c3bf3d5

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

dpt/__init__.py

Whitespace-only changes.

setup.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import setuptools
2+
3+
__version__ = '0.0.1dev1'
4+
5+
setuptools.setup(
6+
name='dpt',
7+
version=__version__,
8+
packages=setuptools.find_packages(),
9+
# Only put dependencies that's not depends on cuda directly.
10+
install_requires=['timm']
11+
)

util/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)