-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
44 lines (39 loc) · 1.06 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
import builtins
from setuptools import setup, find_packages
builtins.__TFTB__SETUP__ = True
# Setuptools config
NAME = "tftb"
DESCRIPTION = "Python module for time-frequency analysis."
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
MAINTAINER = 'Jaidev Deshpande'
MAINTAINER_EMAIL = '[email protected]'
URL = "https://github.com/scikit-signal/tftb"
DOWNLOAD_URL = 'https://pypi.org/project/tftb/#files'
LICENSE = 'new BSD'
PROJECT_URLS = {
'Bug Tracker': 'https://github.com/scikit-signal/tftb/issues',
'Documentation': 'https://tftb.readthedocs.io',
'Source Code': 'https://github.com/scikit-signal/tftb'
}
# Requirements
install_requires = [
'numpy',
'scipy',
'matplotlib'
]
# Setup
import tftb # NOQA: E402
setup(
name=NAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
version=tftb.__version__,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=install_requires
)