-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (32 loc) · 968 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
def get_long_description():
with open("README.md", "r") as readme_file:
return readme_file.read()
setup(
name='mechamodlearn',
description='PyTorch framework for learning mechanical systems',
long_description=get_long_description(),
long_description_content_type="text/markdown",
install_requires=[
'click',
'py-dateutil',
'ipdb',
'torch >= 1.0',
'numpy >= 1.13',
'matplotlib',
'more_itertools',
'scipy',
'tqdm',
'numba >= 0.37',
'termcolor',
'tensorboardX',
],
url='https://github.com/sisl/mechamodlearn/',
packages=find_packages(),
classifiers=(
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',),
version='0.0.1',
author='kunalmenda, rejuvyesh',
author_email='kmenda@stanford.edu, mail@rejuvyesh.com',
license='MIT',)