-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.32 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.32 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
43
#!/usr/bin/env python3
from setuptools import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, "
"could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(name='dftintegrate',
version='0.1.0',
description='Integrate DFT data',
long_description=read_md('README.md'),
author='Matthew M Burbidge',
author_email='mmburbidge@gmail.com',
url='https://github.com/mmb90/dftintegrate',
license='MIT',
install_requires=[
"argparse",
"termcolor",
"numpy",
"matplotlib",
"scipy",
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Information Analysis'],
entry_points={
'console_scripts': [
'dftintegrate = dftintegrate.main:main']},
packages=['dftintegrate', 'dftintegrate.fourier'],
scripts=['dftintegrate/main.py'],
package_data={},
include_package_data=True)