-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (49 loc) · 1.34 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import sys
from pprint import pprint
from setuptools import setup, find_packages
from spira.settings import __version__, __release__
sys.dont_write_bytecode = True
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
setup(
name="spira",
version='{}-{}'.format(__version__, __release__),
description="Superconducting Circuit Modeling and Verification",
author="Ruben van Staden",
author_email="[email protected]",
setup_requires=['setuptools-markdown'],
license="MIT",
url="https://github.com/rubenvanstaden/spira",
install_requires=[
# # Developer packages
# 'halo',
# 'pytest',
# Visual packages
'sphinxcontrib-napoleon',
'matplotlib',
'plotly',
'pyqt5',
'lxml',
# Core packages
'termcolor',
'colorama',
'pandoc',
'scipy',
'numpy',
'gdspy',
'shapely',
'pyclipper',
'networkx',
'pygmsh',
'meshio',
],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
# packages=['spira',
# 'spira.core',
# 'spira',
# 'spira.validatex',
# 'spira.inductex',
# 'spira.josim',
# ],
# package_dir={'spira': 'spira'}
)