-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 885 Bytes
/
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
import setuptools
with open('requirements.txt') as f:
required = f.read().splitlines()
with open("README.md") as fh:
long_description = fh.read()
setuptools.setup(
name='centernet',
version="0.0.1",
description="Object detection training and inference pipeline using CenterNet algorithm. Built on PyTorch Lightning and ONNX Runtime. ",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License ",
"Programming Language :: Python :: 3.9.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence ",
"Topic :: Scientific/Engineering :: Computer Vision",
],
install_requires=required,
author='Uğurcan Özalp',
author_email='uurcann94@gmail.com'
)