forked from lucydot/effmass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (35 loc) · 1.1 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
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': 'lucywhalley@gmail.com',
'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',
'codeclimate-test-reporter',
'pytest-lazy-fixture',
'coverage==4.3.4' ],
'python_requires': '>=3.6',
'license': 'MIT',
'packages': [ 'effmass' ],
'scripts': [],
'name': 'effmass'
}
setup(**config)