-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 912 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 912 Bytes
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
#!/usr/bin/env python3
# -*-coding:utf-8 -*-
# @Author : Shuang (Twist) Song
# @Contact : SongshGeo@gmail.com
# GitHub : https://github.com/SongshGeo
# Website: https://cv.songshgeo.com/
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="abses",
license="BSD 3-Clause",
author="Shuang Song",
author_email="songshgeo@gmail.com",
description="Agent-based social-ecological system framework in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://agentpy.readthedocs.io/",
download_url="https://github.com/absespy/ABSESpy",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
],
)