Skip to content

Commit f2d63a2

Browse files
committed
Cleanup for wheel
1 parent e83ef51 commit f2d63a2

3 files changed

Lines changed: 15 additions & 13 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,6 @@ target/
6161
.DS_Store
6262
data/figs/
6363
data/output/
64+
65+
# Jetbrains PyCharm
66+
.idea/

pytf/preprocessing/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Authors : David C.C. Lu <davidlu89@gmail.com>
2+
#
3+
# License : BSD (3-clause)

setup.py

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,33 @@
11
import __future__
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33
import os
44

55
# Authors : David C.C. Lu <davidlu89@gmail.com>
66
#
77
# License : MIT
88

99
setup(
10-
name = "pytf",
11-
version = 0.1,
12-
packages = ['pytf', 'pytf.core', 'pytf.viz', 'pytf.viz.utils', 'pytf.filter', 'pytf.reconstruction', 'pytf.time_frequency', 'pytf.utilities'],
10+
name="pytf",
11+
version=0.1,
12+
packages=find_packages(),
1313
install_requires=['numpy', 'scipy'],
14-
author = "David Lu",
15-
author_email = "davidlu89@gmail.com",
16-
description = "pytf is a tool for time-frequency analysis",
14+
author="David Lu",
15+
author_email="davidlu89@gmail.com",
16+
description="pytf is a tool for time-frequency analysis",
1717
url='https://github.com/davidlu89/pytf',
18-
classifiers = [
18+
classifiers=[
1919
'Development Status :: 4 - Beta',
2020
'Intended Audience :: Science/Research',
2121
'Natural Language :: English',
2222
'Operating System :: OS Independent',
2323
'Programming Language :: Python :: 2',
2424
'Programming Language :: Python :: 2.7',
2525
'Programming Language :: Python :: 3',
26-
'Programming Language :: Python :: 3.3',
27-
'Programming Language :: Python :: 3.4',
28-
'Programming Language :: Python :: 3.5',
29-
'Programming Language :: Python :: 3.6',
3026
'Topic :: Software Development',
3127
'Topic :: Scientific/Engineering',
3228
'Operating System :: Microsoft :: Windows',
3329
'Operating System :: POSIX',
3430
'Operating System :: Unix',
3531
'Operating System :: MacOS'],
36-
platforms='any'
32+
platforms='any'
3733
)

0 commit comments

Comments
 (0)