-
Notifications
You must be signed in to change notification settings - Fork 72
/
setup.py
52 lines (47 loc) · 1.44 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
51
52
"""Setup file for skrvm."""
import os
import sys
from setuptools import setup, find_packages
import skrvm
version = skrvm.__version__
if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):
print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
sys.exit()
if os.system("pip freeze | grep twine"):
print("twine not installed.\nUse `pip install twine`.\nExiting.")
sys.exit()
os.system("python setup.py sdist bdist_wheel")
os.system("twine upload dist/*")
print("You probably want to also tag the version now:")
print(" git tag -a %s -m 'version %s'" % (version, version))
print(" git push --tags")
sys.exit()
setup(
name='scikit-rvm',
version=version,
description=(
'Relevance Vector Machine implementation using the scikit-learn API'
),
url='https://github.com/JamesRitchie/scikit-rvm',
author='James Ritchie',
author_email='[email protected]',
license='BSD',
packages=find_packages(exclude=['tests*']),
install_requires=[
'numpy>=1.9.2',
'scipy>=0.15.1',
'scikit-learn>=0.16.1'
],
test_suite='tests',
tests_require=[
'coverage>=3.7.1'
],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
]
)