-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (31 loc) · 1 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
import __future__
from setuptools import setup, find_packages
import os
# Authors : David C.C. Lu <davidlu89@gmail.com>
#
# License : MIT
setup(
name="pytf",
version=0.1,
packages=find_packages(),
install_requires=['numpy', 'scipy'],
author="David Lu",
author_email="davidlu89@gmail.com",
description="pytf is a tool for time-frequency analysis",
url='https://github.com/davidlu89/pytf',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
platforms='any'
)