forked from CyberZHG/tf-keras-kervolution-2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 897 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 codecs
from setuptools import setup, find_packages
with codecs.open('README.md', 'r', 'utf8') as reader:
long_description = reader.read()
with codecs.open('requirements.txt', 'r', 'utf8') as reader:
install_requires = list(map(lambda x: x.strip(), reader.readlines()))
setup(
name='tf-keras-kervolution-2d',
version='0.1.0',
packages=find_packages(),
url='https://github.com/CyberZHG/tf-keras-kervolution-2d',
license='Anti 996',
author='CyberZHG',
author_email='[email protected]',
description='Unofficial implementation of kervolutional 2D',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=install_requires,
classifiers=(
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
),
)