-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (38 loc) · 1.17 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
35
36
37
38
39
40
41
42
43
44
45
46
#! /usr/bin/env python
import os
import sys
from setuptools import Extension, find_packages, setup
entry_points = {
"pymt.plugins": [
"Nwis=pymt_nwis.bmi:Nwis",
]
}
def read(filename):
with open(filename, "r", encoding="utf-8") as fp:
return fp.read()
long_description = "\n\n".join(
[read("README.rst"), read("CREDITS.rst"), read("CHANGES.rst")]
)
setup(
name="pymt_nwis",
author="Tian Gan",
author_email="gantian127@gmail.com",
description="PyMT plugin for pymt_nwis",
long_description=long_description,
version="0.2.0",
url="https://github.com/gantian127/pymt_nwis",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
],
keywords=["bmi", "pymt"],
install_requires=open("requirements.txt", "r").read().splitlines(),
packages=find_packages(),
entry_points=entry_points,
include_package_data=True,
)