-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 909 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 909 Bytes
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
from setuptools import setup, find_packages
setup(
name='desc',
version='1.0',
packages=find_packages(),
install_requires=[
'pandas>=1.3.0',
'numpy>=1.26.2',
'scipy>=1.11.4',
'sklearn-extra>=0.2.0',
'openbabel>=3.1.0',
'rdkit>=2021.03.1'
],
entry_points={
'console_scripts': [
'desc=desc.main:main',
],
},
author='Albert Masip-Sánchez, Xavier López, Josep M. Poblet',
author_email='albert.masip@urv.cat, javier.lopez@urv.cat',
description='An Automated Strategy to Efficiently Account for Dynamic Environmental Effects in Solution',
url='https://github.com/qcgurv/DESC/tree/main',
classifiers=[
'Programming Language :: Python :: 3',
'License :: GNU AFFERO GENERAL PUBLIC LICENSE',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)