-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.33 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
from setuptools import setup
import sys
with open('README.rst', encoding="UTF-8") as f:
readme = f.read()
setup(
name = 'rlc_chart',
version = '1.0.0',
description = 'A library that renders impedance charts that include capacitance and inductance grids.',
long_description = readme,
long_description_content_type = 'text/x-rst',
author = "Ken Kundert",
author_email = '[email protected]',
url = "https://nurdletech.com/linux-utilities/rlc_chart",
download_url = "https://github.com/kenkundert/rlc_chart/tarball/master",
license = 'GPLv3+',
zip_safe = True,
py_modules = 'rlc_chart'.split(),
install_requires = 'quantiphy svgwrite'.split(),
python_requires = '>=3.6',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Utilities',
'Topic :: Scientific/Engineering',
],
)