-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.34 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.34 KB
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
35
36
37
38
39
40
41
42
# coding: utf-8
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='interface_stability',
version='0.1',
description='Python project for analyze interface stability',
long_description=long_description,
url='https://github.com/mogroupumd/interface_stability',
author='Yifei Mo Research Group at UMD',
author_email='yizhou.zhu@gmail.com',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
],
keywords=[],
#packages=['interface_stability','scripts'],
packages=find_packages(),
#install_requires=['pymatgen','argparse'],
install_requires=['argparse'],
extras_require={},
package_data={},
data_files=[],
entry_points={
'console_scripts': [
'phase_stability=interface_stability.scripts.phase_stability:main',
'pseudo_binary=interface_stability.scripts.pseudo_binary:main'
],
},
project_urls={
'Bug Reports': 'https://github.com/mogroupumd/interface_stability/issues',
'Source': 'https://github.com/mogroupumd/interface_stability',
},
)