-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
34 lines (31 loc) · 1.25 KB
/
setup.py
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
31
32
33
34
__author__ = "Adam R. Symington"
__copyright__ = "Copyright Adam R.Symington (2019)"
__version__ = "2.0.2"
__maintainer__ = "Adam R. Symington"
__email__ = "ars44s@bath.ac.uk"
__date__ = "1/12/2021"
from setuptools import setup
import os
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name='surfinpy',
version='2.0.2',
description='Surface Phase Diagram Plotting Tools',
long_description=open(os.path.join(module_dir, 'README.md')).read(),
long_description_content_type='text/markdown',
url='https://github.com/symmy596/SurfinPy',
author='Adam R. Symington',
author_email='ars44@bath.ac.uk',
license='MIT license',
packages=['surfinpy'],
zip_safe=False,
python_requires='>=3.6',
install_requires=['scipy', 'numpy', 'pymatgen', 'numpy', 'matplotlib', 'seaborn','pyyaml'],
extras_require={'Tutorials': ["jupyter"]},
classifiers=['Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering']
)