-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 986 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
import setuptools
import pathlib
# Read the README file
this_directory = pathlib.Path(__file__).parent
with open((this_directory / "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name = "cafcore",
version = "0.1.3",
description = "Core functions used to process data for R.J. Cook Agronomy Farm LTAR",
long_description = long_description,
long_description_content_type="text/markdown",
packages = setuptools.find_packages(),
license="CC0",
author = "Bryan Carlson",
author_email = "[email protected]",
url = "https://github.com/cafltar/cafcore",
keywords = [],
install_requires= ["pathlib", "pandas", "numpy", "geopandas"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3"
],
include_package_data=True
)