setup.py 922 Bytes
Newer Older
zcxzcx1's avatar
zcxzcx1 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages

setup(
    name='BOMLIP-CSP', 
    version='0.1',
    author='Chengxi Zhao, Zhaojia Ma, Dingrui Fan',
    author_email='chengxi_zhao@ustc.edu.cn, zhaojia_ma@foxmail.com',
    description='Integrating machine learning interatomic potentials with batched optimization for crystal structure prediction',
    url='https://github.com/pic-ai-robotic-chemistry/BOMLIP-CSP',
    license='MIT',
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Science/Research',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.10',
        'Topic :: Scientific/Engineering :: Chemistry',
        'Topic :: Scientific/Engineering :: Physics',
    ],
    python_requires='>=3.10',
    package_dir={'': 'src'},
    packages=find_packages('src'),
)