forked from xmu-xiaoma666/External-Attention-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.19 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
37
38
39
from setuptools import find_packages, setup
setup(
name="fighingcv",
version="1.0.0",
author="xmu-xiaoma666",
author_email="[email protected]",
description=(
"FightingCV Codebase For Attention,Backbone, MLP, Re-parameter, Convolution"
),
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords=(
"Attention"
"Backbone"
),
license="Apache",
url="https://github.com/xmu-xiaoma666/External-Attention-pytorch",
package_dir={"": "."},
packages=find_packages("."),
# entry_points={
# "console_scripts": [
# "huggingface-cli=huggingface_hub.commands.huggingface_cli:main"
# ]
# },
python_requires=">=3.7.0",
# install_requires=install_requires,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)