-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 787 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 787 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
from setuptools import setup, find_packages
from distutils.command.install import INSTALL_SCHEMES
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
setup(name='drl_nuclearity_calc',
version='0.0.1',
description='Module for surface nuclearity calculation',
url='https://github.com/ulissigroup/NuclearityCalculation',
author='Unnatti Sharma, Zack Ulissi',
author_email='zulissi@andrew.cmu.edu',
license='GPL',
platforms=[],
packages=find_packages(),
scripts=[],
include_package_data=False,
install_requires=['ase>=3.19.1',
'numpy',
'matplotlib',
'pymatgen',
'pandas'],
long_description='''Module for surface nuclearity calculation for any slab''',)