-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (25 loc) · 821 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
from __future__ import absolute_import, division, print_function
from setuptools import setup, find_packages
setup(
name='wannier90-utils',
version='0.1.0',
description='Wannier90 utility library',
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 :: 3',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'numpy',
'scipy',
],
)