-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
55 lines (49 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
RELEASE = True
import codecs
from setuptools import setup, find_packages
import sys, os
classifiers = """\
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: ISC License (ISCL)
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries :: Python Modules
"""
version = '0.1'
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume UTF-8 encoding.
"""
with codecs.open(os.path.join(HERE, *parts), "rb", "utf-8") as f:
return f.read()
setup(
# name='veneer-py',
# version=version,
# description="Support for scripting eWater Source models through the Veneer (RESTful HTTP) plugin",
# packages=["veneer","veneer.nodes"],
# long_description=read("README.md"),
# classifiers=filter(None, classifiers.split("\n")),
# keywords='hydrology ewater veneer scripting http rest',
# author='Joel Rahman',
# author_email='[email protected]',
# url='https://github.com/flowmatters/veneer-py',
#download_url = "http://cheeseshop.python.org/packages/source/p/Puppy/Puppy-%s.tar.gz" % version,
# license='ISC',
# py_modules=['veneer'],
# include_package_data=True,
# zip_safe=True,
# test_suite = 'nose.collector',
# install_requires=[
# 'numpy',
# 'pandas'
# ],
# extras_require={
# 'test': ['nose'],
# },
)