-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·29 lines (27 loc) · 955 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="SimpleSpectral",
version="1.0.0",
description="Heavily simplified scipy.signal.spectral module which only depends on NumPy and supports pyFFTW",
long_description=open('README.rst').read(),
author="Michal Krenek (Mikos)",
author_email="[email protected]",
url="https://github.com/xmikos/simplespectral",
license="MIT",
py_modules=["simplespectral"],
install_requires=[
'numpy',
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering"
]
)