-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1017 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
28
29
30
31
32
33
34
35
from __future__ import absolute_import, division, print_function
from setuptools import setup, find_packages
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='opfmpy',
version='0.0.0',
description='a Python package implementing the optimized projection functions method',
author='Jamal I. Mustafa',
author_email='[email protected]',
license='BSD',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Physics',
],
packages=find_packages(exclude=['docs', 'tests']),
scripts=['opfmpy/scripts/opfm.py'],
long_description=long_description,
install_requires=[
'numpy',
'scipy',
'wannier90-utils',
'codiag',
'f90nml',
],
tests_require=['pytest'],
)