-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (28 loc) · 1020 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
31
32
# -*- coding: utf-8 -*-
# Symbolic Transfer Function Solver for Signal Flow Graphs
#
# Author: 秋纫
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pysfg",
version="0.1.2",
author="秋纫",
author_email="qrqiuren@users.noreply.github.com",
description="A Python package for symbolic signal flow graph analysis.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/qrqiuren/PySFG",
packages=setuptools.find_namespace_packages(),
install_requires=["strictyaml", "networkx", "sympy"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
],
python_requires='>=3.6',
)