-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
35 lines (31 loc) · 1.21 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
from os.path import join, dirname
from setuptools import setup, find_packages
def read(fname):
try:
return open(join(dirname(__file__), fname)).read()
except:
return 'See https://github.com/UBC-MDS/PyPunisher/tree/master'
setup(
name='pypunisher',
version='4.0.1',
author='Jill Cates, Avinash Prabhakaran, Tariq Hassan',
author_email='NA',
description='Model Selection in Python',
long_description=read('docs/README.md'),
license='BSD-3',
keywords='model selection',
url='https://github.com/UBC-MDS/PyPunisher',
download_url='https://github.com/UBC-MDS/PyPunisher/archive/v4.0.1tar.gz',
packages=find_packages(exclude=("tests",)),
# Note: requirements.txt contains some packages
# which are not needed to simply use the package
# (i.e., they're only need to execute tests, e.g., `pytest`).
install_requires=['numpy', 'scipy', 'scikit-learn'],
classifiers=['Development Status :: 3 - Alpha',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License'
],
include_package_data=True
)