-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
42 lines (39 loc) · 1.59 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
#!/bin/env python
# -*- coding: utf-8 -*-
"""
File Information:
-----------------
setuptools script for aestimo project
"""
from setuptools import setup
import os, sys
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup( name='aestimo',
version='3.0.0',
description='A bandstructure simulator of semiconductor nanostructures called quantum wells.',
long_description= read('README.md'),
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering"
],
author='sblisesivdin',
author_email='sblisesivdin@gmail.com',
url='http://www.aestimosolver.org',
license='GPLv3',
keywords='quantum well semiconductor nanostructure optical transitions',
package_dir = {'aestimo': ''},
packages=['aestimo'],
package_data={'aestimo':['CODE_OF_CONDUCT.md','README.md','COPYING.md',
'aeslibs/*.py',
'tutorials/*','examples/*.py']},
install_requires=['numpy>1.7.0','matplotlib','scipy'],
zip_safe=False, #we want users to be able to easily see and edit the scripts
#setup_requires=['numpy'], #causes problems with pip?
)