Skip to content

Commit

Permalink
Merge pull request #2 from linz/add_setup
Browse files Browse the repository at this point in the history
Add setup and survey links.
  • Loading branch information
jducnuigeen committed Aug 8, 2019
2 parents 72f3664 + f441011 commit efbc650
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion db/docs/source/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Feedback

**We want your feedback**

This pilot dataset is unlikely to be updated, however feedback will be used for future enhancements to LINZ river datasets. To provide your feedback on these pilot datasets, please complete our short survey here: <URL>
This pilot dataset is unlikely to be updated, however feedback will be used for future enhancements to LINZ river datasets. To provide your feedback on these pilot datasets, please complete our `short survey here <https://landinformationnz.au1.qualtrics.com/jfe/form/SV_2gYFwbXfDY1jm9n>`_


Accuracy Specification
Expand Down
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

with open("requirements-docs.txt") as f:
requirements = f.read().splitlines()

setup(
name="River_Names",
version="dev",
description="River Names Data Dictionary",
url="https://github.com/",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
)

0 comments on commit efbc650

Please sign in to comment.