-
Notifications
You must be signed in to change notification settings - Fork 140
/
setup.py
36 lines (30 loc) · 1.18 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
# this file was created by following
# https://github.com/pypa/sampleproject/blob/master/setup.py
# as example
from setuptools import setup, find_packages
setup(
name='keras_transformer',
# This allows to use git/hg to auto-generate new versions
use_scm_version={"root": ".", "relative_to": __file__},
setup_requires=['setuptools_scm'],
description=('Library for building (Universal) Transformer models '
'using Keras'),
url='https://github.com/kpot/keras-transformer',
author='Kirill Mavreshko',
author_email='[email protected]',
python_requires='>=3.6.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
# Indicate who your project is intended for
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='development',
packages=find_packages(where='.', exclude=['example']),
install_requires=['Keras>=2.0.8', 'numpy'],
tests_require=['pytest'],
include_package_data=True,
)