-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.25 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.25 KB
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
import os
from setuptools import setup, find_packages
version = '0.1.6'
README = os.path.join(os.path.dirname(__file__), 'README.md')
long_description = open(README).read()
setup(
name='Flask-YoloAPI',
version=version,
description='Simply the best Flask API library',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: Python'
],
keywords='flask api flapi yoloapi',
author='Sander Ferdinand',
author_email='sa.ferdinand@gmail.com',
url='https://github.com/skftn/flask-yoloapi',
install_requires=[
'flask',
'python-dateutil'
],
extra_requires=[
'pytest',
'pytest-flask',
'pytest-cov'
],
setup_requires=['setuptools>=38.6.0'],
download_url=
'https://github.com/skftn/flask-yoloapi/archive/master.zip',
packages=find_packages(),
include_package_data=True,
)