Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartłomiej Kurzeja committed Oct 28, 2019
1 parent 5849fa2 commit 4118b65
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include configs *.yaml
32 changes: 32 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name="torch-ssd",
version="1.2.0",
packages=find_packages(exclude=['ext']),
install_requires=[
"torch~=1.0",
"torchvision~=0.3",
"opencv-python~=4.0",
"yacs==0.1.6",
"Vizer~=0.1.4",
],
author="Congcong Li",
author_email="[email protected]",
description="High quality, fast, modular reference implementation of SSD in PyTorch",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lufficc/SSD",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
license="MIT",
python_requires=">=3.6",
include_package_data=True,
)

0 comments on commit 4118b65

Please sign in to comment.