forked from cpmpercussion/keras-mdn-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.13 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
from setuptools import setup
import os
import sys
_here = os.path.abspath(os.path.dirname(__file__))
if sys.version_info[0] < 3:
with open(os.path.join(_here, 'README.md')) as f:
long_description = f.read()
else:
with open(os.path.join(_here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
version = {}
with open(os.path.join(_here, 'mdn', 'version.py')) as f:
exec(f.read(), version)
setup(
name='keras-mdn-layer',
version=version['__version__'],
description=('An MDN Layer for Keras using TensorFlow Probability.'),
long_description=long_description,
long_description_content_type="text/markdown",
author='Charles Martin',
author_email='charlepm@ifi.uio.no',
url='https://github.com/cpmpercussion/keras-mdn-layer',
license='MIT',
packages=['mdn'],
include_package_data=True,
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'],
)