forked from ekzhang/fastseg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.22 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
"""Setup"""
import pathlib
from setuptools import setup, find_namespace_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="fastseg",
version="0.1.1",
description="Fast Semantic Segmentation for PyTorch",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/ekzhang/fast-semantic-seg",
author="Eric Zhang",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Multimedia :: Graphics",
],
packages=find_namespace_packages(include=["fastseg", "fastseg.*"]),
include_package_data=True,
install_requires=[
"geffnet >= 0.9.8",
"Pillow >= 7.0.0",
"numpy >= 1.18.0",
"torch >= 1.5.0",
"torchvision >= 0.6.0",
],
)