forked from deepmodeling/CrystalFormer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 662 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name = 'crystalformer',
version = '0.3',
keywords='Crystal Generation',
description = 'CrystalFormer is a transformer-based autoregressive model specifically designed for space group-controlled generation of crystalline materials.',
license = 'Apache License',
url = 'https://github.com/deepmodeling/CrystalFormer',
author = 'iopcompphys',
author_email = 'zdcao@iphy.ac.cn, wanglei@iphy.ac.cn',
packages = find_packages(),
include_package_data = True,
package_data={
'crystalformer': ['data/*.csv'],
},
platforms = 'any',
install_requires = [],
)