|
1 | 1 | import __future__ |
2 | | -from setuptools import setup |
| 2 | +from setuptools import setup, find_packages |
3 | 3 | import os |
4 | 4 |
|
5 | 5 | # Authors : David C.C. Lu <davidlu89@gmail.com> |
6 | 6 | # |
7 | 7 | # License : MIT |
8 | 8 |
|
9 | 9 | 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(), |
13 | 13 | 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", |
17 | 17 | url='https://github.com/davidlu89/pytf', |
18 | | - classifiers = [ |
| 18 | + classifiers=[ |
19 | 19 | 'Development Status :: 4 - Beta', |
20 | 20 | 'Intended Audience :: Science/Research', |
21 | 21 | 'Natural Language :: English', |
22 | 22 | 'Operating System :: OS Independent', |
23 | 23 | 'Programming Language :: Python :: 2', |
24 | 24 | 'Programming Language :: Python :: 2.7', |
25 | 25 | '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', |
30 | 26 | 'Topic :: Software Development', |
31 | 27 | 'Topic :: Scientific/Engineering', |
32 | 28 | 'Operating System :: Microsoft :: Windows', |
33 | 29 | 'Operating System :: POSIX', |
34 | 30 | 'Operating System :: Unix', |
35 | 31 | 'Operating System :: MacOS'], |
36 | | - platforms='any' |
| 32 | + platforms='any' |
37 | 33 | ) |
0 commit comments