-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (28 loc) · 1011 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
readme = f.read()
setup(
name='tdyno',
version='0.1.7',
description='FDTD with dynamic modulations in the refractive index or the gain/loss in materials.',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/alexysong/tdyno',
# url='http://',
# check https://pypi.org/pypi?%3Aaction=list_classifiers for classifiers
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
],
keywords=['fdtd', 'dynamic modulation'],
author='Alex Y. Song',
author_email='song.alexy@gmail.com',
packages=find_packages(),
install_requires=[
'numpy >= 1.11.3',
'scipy >= 0.19.0',
'matplotlib >= 2.0.0'
],
zip_safe=False)