-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsetup.py
37 lines (33 loc) · 1.46 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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
# --------------------------------------------------------
from setuptools import find_packages, setup
setup(
name="hiera-transformer",
version="0.1.4",
author="Chaitanya Ryali, Daniel Bolya",
url="https://github.com/facebookresearch/hiera",
description="A fast, powerful, and simple hierarchical vision transformer",
install_requires=["torch>=1.8.1", "timm>=0.4.12", "tqdm", "packaging"],
packages=find_packages(exclude=("examples", "build")),
license = 'Apache 2.0',
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
python_requires=">=3.8.0",
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",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)