-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
31 lines (29 loc) · 1.01 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
from setuptools import find_packages, setup
from pathlib import Path
here = Path(__file__).parent
readme = (here / "README.md").read_text()
setup(
name='BerkeleyPhotonicsGenerator',
version='0.8.5',
author='Pavan Bhargava and Sidney Buchbinder',
author_email='pvnbhargava@berkeley.edu',
description='A Python framework for generating masks and simulating integrated optical systems',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=[
'setuptools>=18.5',
'PyYAML>=5.1',
'numpy>=1.10',
'pytest>=4',
'matplotlib>=3',
'gdspy @ https://github.com/heitzmann/gdspy/archive/900ec9efecd066e3440e502bd8a046789bbab552.zip',
'scipy>=1.1.0',
'memory_profiler>=0.54.0',
'Jinja2>=2.10.1',
],
url='https://github.com/BerkeleyPhotonicsGenerator/BPG',
license='BSD-3-Clause',
packages=find_packages(exclude=("tests", "docs")),
scripts=['BPG/bpg'],
include_package_data=True,
)