-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
49 lines (45 loc) · 1.68 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
__version__ = "0.2.2"
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(),
package_data={
'deltasigma': ['tests/test_data/*.mat', 'tests/test_data/*.txt']
},
install_requires=['numpy', 'scipy>=0.11.0', 'matplotlib>=1.1.1'],
zip_safe=False,
include_package_data=True,
author="Giuseppe Venturini and others",
author_email="[email protected]",
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 :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4"]
)