-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
38 lines (29 loc) · 1.02 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
# -*- coding: utf-8 -*-
'''
Created on 20 Dec. 2014
@author: Mohamed Seghilani
'''
""" How to run the setup file:
see
https://docs.python.org/2/distutils/builtdist.html
python setup.py bdist_wininst # to generate windows installer
python setup.py bdist_rpm # to generate a "rpm" installer
bdist_egg # to generate a platform ".egg" package
"""
from setuptools import setup, find_packages
setup(name='opencavity',
version='0.1',
description='Optical cavity eigenmode solver',
url='http://',
author='Mohamed Seghilani',
author_email='[email protected]',
license='GPLv2',
packages=['opencavity'],
package_dir={'opencavity': 'opencavity'},
package_data={'opencavity': ['Docs\_build\html/*.html','Docs\_build\html\_static/*','Docs\_build\html\_images/*','Docs\_build\html\_sources/*','\Docs\tuto_source/*']},
#data_files=[('Documents', ['Docs\*.html'])],
nstall_requires=[
'numpy','scipy','matplotlib'
],
include_package_data = True,
zip_safe=False)