Skip to content

Commit 13bb215

Browse files
committed
Adds setup.py
1 parent c318a6d commit 13bb215

File tree

1 file changed

+2
-22
lines changed

1 file changed

+2
-22
lines changed

setup.py

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,6 @@
1010
# See the License for the specific language governing permissions and
1111
# limitations under the License.
1212

13-
import setuptools
13+
from setuptools import setup
1414

15-
setuptools.setup(
16-
name="torchdyn",
17-
version="0.2.0",
18-
author="DiffEqML",
19-
20-
description="PyTorch package for all things neural differential equations",
21-
url="https://github.com/DiffEqML/torchdyn",
22-
packages=setuptools.find_packages(),
23-
install_requires=['torch>=1.6.0',
24-
'pytorch-lightning>=0.8.4',
25-
'dgl>=0.4.1',
26-
'torchdiffeq>=0.0.1',
27-
'matplotlib',
28-
'torchvision',
29-
'scikit-learn'],
30-
classifiers=[
31-
"Programming Language :: Python :: 3",
32-
"License :: OSI Approved :: MIT License",
33-
],
34-
python_requires='>=3.6',
35-
)
15+
setup(use_scm_version=True)

0 commit comments

Comments
 (0)