-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 854 Bytes
/
setup.py
File metadata and controls
34 lines (33 loc) · 854 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
28
29
30
31
32
33
34
from setuptools import setup
from setuptools.command.install import install
from setuptools.command.build_py import build_py
import subprocess as sub
import sys
import os
setup(
name="NISTgenerator",
version="1.0",
description="GDS maker",
url="https://github.com/gregmoille/pyNISTtoolbox",
author="Greg Moille",
author_email="gmoille@umd.edu",
license="Open",
long_description="User Friendly gds maker for ring reosnators",
packages=["NISTgenerator"],
install_requires=[
"numpy",
"ipdb",
"pandas",
"gdspy",
"shapely",
"treepoem",
"textwrap3",
],
include_package_data=True,
zip_safe=False,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved",
"Operating System :: OS Independent",
),
)