forked from hpretl/python-deltasigma
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (45 loc) · 1.66 KB
/
setup.py
File metadata and controls
51 lines (45 loc) · 1.66 KB
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
__version__ = "0.2.6"
def read(fname):
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as fp:
return fp.read()
except IOError:
return ""
setup(
name="deltasigma",
version=__version__,
packages=find_packages(exclude=["beta"]),
package_data={"deltasigma": ["tests/test_data/*.mat", "tests/test_data/*.txt"]},
install_requires=["numpy", "scipy", "matplotlib>=3.0.0"],
zip_safe=False,
include_package_data=True,
author="Giuseppe Venturini and others",
author_email="giuseppe.g.venturini@ieee.org",
description="a Python package to synthesize, simulate, scale and map "
+ "to implementable topologies delta sigma modulators.",
long_description="".join(
[read("pypi_description.rst"), "\n\n", read("CHANGES.rst")]
),
license="BSD",
keywords="delta sigma modulator simulator",
url="http://github.com/ggventurini/python-deltasigma",
test_suite="deltasigma.tests",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)