-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (34 loc) · 1000 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
import sys
from setuptools import setup, find_packages
with open('README.md','r') as fh:
long_description = fh.read()
setup(
name='Asparagus',
version='0.5.0',
description='Function Bundle from Sampling, Training to Application of NN Potentials',
author=(
'L.I.Vazquez-Salazar, Silvan Kaeser, '
+ 'Valerii Andreichev and Kai Toepfer'),
long_description=long_description,
author_email='[email protected]',
url='https://github.com/MMunibas/Asparagus/releases',
license='MIT',
packages=find_packages(include=['asparagus']),
include_package_data=True,
install_requires=[
'ase>=3.21.0',
'numpy',
'scipy',
'ctype',
'torch>2.1',
'torchvision',
'torchaudio',
'torch-ema>=0.3',
'tensorboard',
'pandas',
'h5py',
'matplotlib',
'seaborn',
'pytest']
#TODO: Add more dependencies and option to be read from a file
)