Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
makyol committed May 16, 2024
1 parent 81272f7 commit 13c6436
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup, find_packages

setup(
name="landusemix",
version="0.0.1",
packages=find_packages(),
install_requires=[
"pandas",
"geopandas",
"shapely"
],
include_package_data=True,
description="Land use mix indices calculation",
author="Mehmet Ali Akyol",
author_email="[email protected]",
url="https://github.com/makyol/landusemix",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit 13c6436

Please sign in to comment.