|
15 | 15 | _ver.append(_version_extra)
|
16 | 16 |
|
17 | 17 | __version__ = '.'.join(map(str, _ver))
|
18 |
| - |
19 |
| -CLASSIFIERS = ["Development Status :: 3 - Alpha", |
20 |
| - "Environment :: Console", |
21 |
| - "Intended Audience :: Science/Research", |
22 |
| - "License :: OSI Approved :: BSD License", |
23 |
| - "Operating System :: OS Independent", |
24 |
| - "Programming Language :: Python", |
25 |
| - "Topic :: Scientific/Engineering"] |
26 |
| - |
27 |
| -description = "Nitime: timeseries analysis for neuroscience data" |
28 |
| - |
29 |
| -# Note: this long_description is actually a copy/paste from the top-level |
30 |
| -# README.txt, so that it shows up nicely on PyPI. So please remember to edit |
31 |
| -# it only in one place and sync it correctly. |
32 |
| -long_description = """ |
33 |
| -=================================================== |
34 |
| - Nitime: timeseries analysis for neuroscience data |
35 |
| -=================================================== |
36 |
| -
|
37 |
| -Nitime is library of tools and algorithms for the analysis of time-series data |
38 |
| -from neuroscience experiments. It contains a implementation of numerical |
39 |
| -algorithms for time-series analysis both in the time and spectral domains, a |
40 |
| -set of container objects to represent time-series, and auxiliary objects that |
41 |
| -expose a high level interface to the numerical machinery and make common |
42 |
| -analysis tasks easy to express with compact and semantically clear code. |
43 |
| -
|
44 |
| -Website and mailing list |
45 |
| -======================== |
46 |
| -
|
47 |
| -Current information can always be found at the nitime `website`_. Questions and |
48 |
| -comments can be directed to the mailing `list`_. |
49 |
| -
|
50 |
| -.. _website: http://nipy.org/nitime |
51 |
| -.. _list: http://mail.scipy.org/mailman/listinfo/nipy-devel |
52 |
| -
|
53 |
| -Code |
54 |
| -==== |
55 |
| -
|
56 |
| -You can find our sources and single-click downloads: |
57 |
| -
|
58 |
| -* `Main repository`_ on Github. |
59 |
| -* Documentation_ for all releases and current development tree. |
60 |
| -* Download as a tar/zip file the `current trunk`_. |
61 |
| -* Downloads of all `available releases`_. |
62 |
| -
|
63 |
| -.. _main repository: http://github.com/nipy/nitime |
64 |
| -.. _Documentation: http://nipy.org/nitime |
65 |
| -.. _current trunk: http://github.com/nipy/nitime/archives/master |
66 |
| -.. _available releases: http://github.com/nipy/nitime/downloads |
67 |
| -
|
68 |
| -
|
69 |
| -License information |
70 |
| -=================== |
71 |
| -
|
72 |
| -Nitime is licensed under the terms of the new BSD license. See the file |
73 |
| -"LICENSE" for information on the history of this software, terms & conditions |
74 |
| -for usage, and a DISCLAIMER OF ALL WARRANTIES. |
75 |
| -
|
76 |
| -All trademarks referenced herein are property of their respective holders. |
77 |
| -
|
78 |
| -Copyright (c) 2006-2020, NIPY Developers |
79 |
| -All rights reserved. |
80 |
| -""" |
81 |
| - |
82 |
| -NAME = "nitime" |
83 |
| -MAINTAINER = "Nipy Developers" |
84 |
| -MAINTAINER_EMAIL = "[email protected]" |
85 |
| -DESCRIPTION = description |
86 |
| -LONG_DESCRIPTION = long_description |
87 |
| -URL = "http://nipy.org/nitime" |
88 |
| -DOWNLOAD_URL = "http://github.com/nipy/nitime/downloads" |
89 |
| -LICENSE = "Simplified BSD" |
90 |
| -AUTHOR = "Nitime developers" |
91 |
| -AUTHOR_EMAIL = "[email protected]" |
92 |
| -PLATFORMS = "OS Independent" |
93 |
| -MAJOR = _version_major |
94 |
| -MINOR = _version_minor |
95 |
| -MICRO = _version_micro |
96 |
| -VERSION = __version__ |
97 |
| -PACKAGE_DATA = {"nitime": ["LICENSE", "tests/*.txt", "tests/*.npy", |
98 |
| - "data/*.nii.gz", "data/*.txt", "data/*.csv"]} |
99 |
| -PYTHON_REQUIRES = ">=3.7" |
0 commit comments