forked from lucydot/effmass
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (50 loc) · 1.47 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
from effmass import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except ImportError:
long_description = open('README.md').read()
config = {
'description': 'An effective mass package',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'author': 'Lucy Whalley',
'author_email': '[email protected]',
'url': 'https://github.com/lucydot/effmass',
'download_url': "https://github.com/lucydot/effmass/archive/%s.tar.gz" % (__version__),
'version': __version__,
'install_requires': [ 'vasppy>=0.5.0.0',
'scipy',
'numpy',
'matplotlib',
'adjustText',
'ase>=3.21.1',
'octopuspy>=1.0.2',
'questionary>=1.9.0',
'prettytable>=2.1.0'],
'extras_require': {
"docs": [
"sphinx >=3.2.1",
"sphinx_rtd_theme>=0.5.0",
],
"tests": [
"pytest",
"pytest-lazy-fixture",
"code-climate-test-reporter",
"coverage==4.3.4"
],
"dev": ["black"],
},
'python_requires': '>=3.6',
'license': 'MIT',
'packages': [ 'effmass' ],
'scripts': [],
'name': 'effmass',
'entry_points': {"console_scripts": ["effmass = effmass.cli:cli"]}
}
setup(**config)