-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 910 Bytes
/
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
from setuptools import setup, find_packages
import platform
import os
def readme():
with open('README.md') as f:
return f.read()
setup(
name='monstermatch',
version='1.0.0',
readme=readme(),
packages=find_packages(),
setup_requires=["pytest-runner"],
tests_require=["pytest", "more-itertools<6.0.0"],
entry_points={
'console_scripts': [
'monstermatch=monstermatch.bin.monstermatch:main']
},
install_requires=["numpy",
"scipy",
"pandas",
"Cython",
"scikit-learn @ git+https://github.com/TomDLT/scikit-learn.git#nmf_missing",
"click"],
url='http://monstermatch.hiddenswitch.com',
license='AGPLv4',
author='bberman',
author_email='[email protected]',
description='Creative code for the Monster Match game'
)