-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
37 lines (31 loc) · 1021 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
33
34
35
36
37
from setuptools import find_packages, setup
with open('README.md') as f:
readme = f.read()
setup(
name="dsatools",
packages=find_packages(),
version="0.1.44",
description=""" The library with a most popular tools for Digital Signal Analysis (DSA) """,
long_description=readme,
author="Mikhail Ronkin",
author_email="[email protected]",
url = 'https://github.com/MVRonkin/dsatools',
download_url = "https://github.com/MVRonkin/dsatools/archive/547abfbb9e452703bb83f90c4d66a350ee4e2ae3.zip",
keywords = ['Digital Signal Analysis',
'Signal Processing',
'Digital Signal Processing',
'Digital Spectrum Processing',
'Digital Spectrum Analysis'],
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=[
'numpy',
'scipy',
'matplotlib'
],
)