forked from nunobrum/PyLTSpice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='PyLTSpice',
version='1.5',
scripts=['PyLTSpice\\__init__.py',
'PyLTSpice\\Histogram.py',
'PyLTSpice\\LTSpice_RawRead.py',
'PyLTSpice\\LTSpiceBatch.py',
'PyLTSpice\\LTSteps.py',
'PyLTSpice\\LTSpice_SemiDevOpReader.py',
# 'PyLTSpice\\sketch.py'
],
# install_requires = [],
author="Nuno Brum",
author_email="[email protected]",
description="An set of tools to Automate LTSpice simulations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nunobrum/PyLTSpice",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
],
)