-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 810 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
27
28
"""Builds the project as a CLI executable
"""
from setuptools import setup, find_packages
setup(
name='droneframe',
version='0.1.1',
packages=find_packages(),
install_requires=[
'argparse'
],
entry_points={
'console_scripts': [
'droneframe = droneframe.cli:main',
],
},
author='Anwar Ali-Ahmad',
author_email='[email protected]',
description='Extract frames from drone footage along with their EXIF data.',
license='MIT',
url='https://github.com/anwaraliahmad/droneframe',
long_description=open('README.md', encoding="utf-8").read(),
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
],
)