-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 723 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 723 Bytes
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
from setuptools import setup, find_packages
VERSION = '0.2.0'
DESCRIPTION = 'Provide tools to complete the tasks of the drone load competition.'
with open("docs/README.md", "r", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
# Setting up
setup(
name="droneload",
version=VERSION,
author="Hugo Degeneve",
author_email="<hugo.degeneve@gmail.com>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=requirements,
keywords=['python', 'video', 'drone', 'load', 'competition'],
classifiers=[
"Programming Language :: Python :: 3",
]
)