-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 1003 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 1003 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 python
from setuptools import find_packages, setup
import versioneer
setup(
name="rafem",
version=versioneer.get_version(),
author="Katherine Ratliff",
author_email="k.ratliff@duke.edu",
description="River Avulsion Flooplain Evolution Model",
long_description=open("README.rst", encoding="utf-8").read(),
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Physics",
],
url="https://github.com/katmratliff/avulsion-bmi",
license="MIT",
install_requires=open("requirements.txt", "r").read().splitlines(),
packages=find_packages(),
entry_points={"console_scripts": ["rafem=rafem.main:rafem"]},
cmdclass=versioneer.get_cmdclass(),
)