-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (32 loc) · 1.11 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
#! /usr/bin/env python
from setuptools import find_packages, setup
def read(filename):
with open(filename, "r") as fp:
return fp.read()
long_description = u"\n\n".join(
[read("README.rst"), read("CREDITS.rst"), read("CHANGES.rst")]
)
setup(
name="chom",
version="0.0.1.dev0",
description="The Coastal Housing Model",
long_description=long_description,
author="Zack Williams",
author_email="williamsz@uncw.edu",
url="https://github.com/UNC-CECL/chom",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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=["coastal", "economics"],
install_requires=open("requirements.txt", "r").read().splitlines(),
packages=find_packages(),
python_requires=">=3.6,<3.9", # because of copulas
include_package_data=True,
)