-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 966 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 966 Bytes
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
from setuptools import setup
setup(
name='fiatlux',
version='0.1.0',
description='Fiatlux is a project that aims to offer a versatile environment for multiple optical simulation',
url='https://github.com/bidou2002/fiatlux',
author='Pierre Janin-Potiron',
author_email='pierre.janinpotiron@gmail.com',
license='MIT License',
packages=['fiatlux'],
install_requires=['matplotlib',
'numpy',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)