-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 863 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 863 Bytes
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
from setuptools import setup, find_packages
setup(
name='twpca',
version='0.0.3',
description='Time warped principal components analysis',
author='Ben Poole, Alex Williams, Niru Maheswaranathan',
url='https://github.com/ganguli-lab/twpca',
install_requires=[
'numpy',
'tensorflow>=1.0.0',
'scipy',
'scikit-learn',
'tqdm',
],
extras_require={
'dev': [],
'test': ['flake8', 'pytest', 'coverage'],
},
long_description='''
Simultaneous alignment and dimensionality reduction of mutlidimensional data
''',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering'],
packages=find_packages(),
license='MIT'
)