-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (29 loc) · 808 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
29
30
31
32
33
34
#!/usr/bin/env python
"""Setup script for the py-pip-install-test package."""
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
requirements = ["pytest==7.1.1"]
test_requirements = [
"pandas",
"matplotlib",
"sql",
"pytest>=3",
]
setup(
author="Yididiya",
email="yidisam18@gmail.com",
python_requires=">=3.6",
description="USGS_LIDAR",
install_requires=requirements,
long_description=readme,
include_package_data=True,
keywords="Agritech, lidar, USGS, pytest",
name="USGS_LIDAR",
packages=find_packages(include=["src", "src.*"]),
test_suite="Tests",
tests_require=test_requirements,
url="https://github.com/jedisam/USGS_LIDAR",
version="0.1.0",
zip_safe=False,
)