-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.05 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
# -*- coding: utf-8 -*-
from setuptools import setup
from io import open
def readme():
with open('README.md', encoding="utf-8-sig") as f:
README = f.read()
return README
setup(
name='focalnet-tf',
version='0.0.2.3',
description='Re-implementation of FocalNet for tensorflow 2.X',
author='Shiro-LK',
author_email='shirosaki94@gmail.com',
license='MIT License',
packages=['focalnet'],
package_data={'focalnet': ['imagenet-1k.json', 'imagenet-21k.json', 'imagenet-22k-reorder.json']},
long_description=readme(),
long_description_content_type="text/markdown",
install_requires=['numpy',
"pytest", "tensorflow", "opencv-python"
],
url='https://github.com/Shiro-LK/focalnet-tf',
download_url='https://github.com/Shiro-LK/focalnet-tf.git',
keywords=["focalnet", "tensorflow"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)