forked from dimonaks/siman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 975 Bytes
/
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
import setuptools, os
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="siman",
version="0.9.8",
author="Dmitry Aksenov",
author_email="[email protected]",
description="Manager for DFT calculations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dimonaks/siman",
license = 'GPL',
keywords='DFT VASP Density Functional Theory NEB DFT+U PAW GGA Monte-Carlo',
# package_dir={'':'siman'},
packages=setuptools.find_packages(),
# packages=['siman'],
# data_files=[(os.path.expanduser("~"), ['siman/simanrc.py'])],
install_requires=['numpy', 'tabulate', 'pymatgen', 'pandas', 'scipy', 'six', 'matplotlib', 'ase', 'paramiko'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
)