-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (48 loc) · 1.55 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
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='hydrograph-py',
# version=version,
# description="Build datasets for publication on hydrograph",
# packages=["hydrograph"],
# long_description=read("README.md"),
# classifiers=filter(None, classifiers.split("\n")),
# keywords='hydrograph dataset',
# author='Joel Rahman',
# author_email='[email protected]',
# url='https://github.com/flowmatters/hydrograph-py',
# license='ISC',
# py_modules=['hydrograph'],
# include_package_data=True,
# zip_safe=True,
test_suite = 'nose.collector', # unsupported by pyproject.toml
# install_requires=[
# 'requests',
# 'pandas'
# ],
# extras_require={
# 'test': [],
# },
)