-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (26 loc) · 1.28 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
"""Allows for the code library to be an installable package and lists the install requirements
"""
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name="agpypeline",
version="0.0.52",
author="Jacob van der Leeuw",
author_email="[email protected]",
description="Installable package for entrypoint and drone-specific environment code within a transformer",
long_description="Package containing entrypoint.py from entrypoint code and environment.py "
"for drone-specific environment code. This allows for transformers to have"
"common entrypoint and environment code in an installable package",
long_description_content_type="text/markdown",
url="https://github.com/AgPipeline/agpypeline",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
install_requires=['setuptools==65.5.1', 'numpy', 'influxdb', 'requests>=2.21.0', 'python-dateutil', 'utm',
'matplotlib', 'Pillow', 'scipy', 'piexif', 'cryptography', 'pyyaml', 'pygdal==3.4.1.*',]
)