forked from aothman/hiscore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 801 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
from setuptools import setup, find_packages
from hiscore import __version__, __maintainer__, __email__
long_description = open('README.md').read()
install_requires = [
'numpy',
'cvxpy'
]
setup(
name = 'hiscore',
version = __version__,
author = __maintainer__,
author_email = __email__,
packages = find_packages(),
description = 'A simple and powerful engine for creating scores',
long_description=long_description,
install_requires=install_requires,
url = 'https://github.com/aothman/hiscore', # use the URL to the github repo
keywords = [],
classifiers =[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 2'
]
)