forked from Guillem96/efficientdet-tf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (38 loc) · 1.53 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools.extension import Extension
from setuptools import setup, find_packages, Command
from os import path
from io import open
from distutils.command.build_ext import build_ext as DistUtilsBuildExt
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'requirements.txt')) as f:
requires = [r for r in f.readlines() if not r.startswith('#')]
setup(
name='efficientdet',
version='0.1',
description='EfficientDet Tensorflow 2.0 implementation',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Guillem96/efficientdet-tf',
author='Guillem96 - Guillem Orellana Trullols',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Data Scientists - Deep Learning Engineers',
'Topic :: Deep Learning',
# Pick your license as you wish
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='object-detection efficientdet bifpn',
packages=find_packages(exclude=['test', 'test.*']),
python_requires='>=3.6',
install_requires=requires,
# TODO: Entrypoint to train and evaluate
project_urls={
'Source': 'https://github.com/Guillem96/efficientdet-tf',
},
)