-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.09 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
31
32
33
34
from pathlib import Path
from setuptools import setup, find_packages
from cplus_core import __version__
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="cplus_core",
version=__version__,
description="Library supporting analysis of CPLUS framework.",
long_description=long_description,
url="https://github.com/kartoza/cplus-core",
author="Conservation International",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"OSI Approved :: GNU General Public License (GPL)"
"Programming Language :: Python :: 3.10",
],
keywords="cplus plugin qgis",
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={"cplus_core": ["version.json", "data/**"]},
include_package_data=True,
install_requires=[],
extras_require={
"dev": [],
"test": [],
},
)