-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
29 lines (24 loc) · 939 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
import setuptools
from setuptools import setup
import os
import sys
_here = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(_here, 'coral_ordinal', 'version.py')) as f:
exec(f.read(), version)
with open(os.path.join(_here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'coral-ordinal',
url = 'https://github.com/ck37/coral-ordinal',
author = 'Chris Kennedy, Stephen Matthews, Georg M. Goerg',
author_email = '[email protected]',
packages = setuptools.find_packages(),
install_requires = ['numpy', 'tensorflow>=2.2'],
version = version['__version__'],
long_description_content_type = "text/markdown",
license = 'MIT',
description = 'Tensorflow Keras implementation of CORAL ordinal regression output layer, loss, activation, and metrics',
long_description = long_description,
python_requires = '>=3.6',
)