-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·51 lines (44 loc) · 1.96 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
from setuptools import setup
from pip.req import parse_requirements
import os
def abspath(fname):
return os.path.join(os.path.dirname(__file__), fname)
def read(fname, split=False):
with open(abspath(fname)) as f:
lines = f.read()
if split:
lines = lines.splitlines()
return lines
def requirements(fname='requirements.txt'):
return [str(r.req) for r in parse_requirements(abspath(fname))]
setup(name='vbmfa',
version='0.0.1',
description='Variational Bayesian Mixture of Factor Analysers',
long_description=read('README.rst'),
author='Christof Angermueller',
author_email='cangermueller@gmail.com',
license='GNU GPLv3+',
url='https://github.com/cangermueller/vbmfa',
packages=['vbmfa'],
install_requires=requirements(),
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Information Analysis',
],
keywords=['Factor Analysis', 'PCA', 'Probabilistic PCA',
'Dimensionality Reduction', 'Clustering'],
)