forked from aiqm/torchani
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 698 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup_attrs = {
'name': 'torchani',
'description': 'PyTorch implementation of ANI',
'long_description': long_description,
'long_description_content_type': "text/markdown",
'url': 'https://github.com/aiqm/torchani',
'author': 'Xiang Gao',
'author_email': 'qasdfgtyuiop@gmail.com',
'license': 'MIT',
'packages': find_packages(),
'include_package_data': True,
'use_scm_version': True,
'setup_requires': ['setuptools_scm'],
'install_requires': [
'torch',
'lark-parser',
'requests'
],
}
setup(**setup_attrs)