-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (48 loc) · 1.34 KB
/
setup.py
File metadata and controls
51 lines (48 loc) · 1.34 KB
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
#!/usr/bin/env python3
# import glob
# import os
from setuptools import setup
# v = {}
# v_path = os.path.join(*'austaltools/_version.py'.split('/'))
# with open(v_path) as v_file:
# exec(v_file.read(), v)
setup()
# name=v['__title__'],
# version=v['__version__'],
# packages=[v['__title__'],
# v['__title__']+".data"
# ],
# package_dir={v['__title__']: v['__title__']},
# package_data={
# v['__title__']+".data": ["*.txt", "*.json"],
# },
# entry_points={
# 'console_scripts': [
# 'austaltools=austaltools.command_line:main',
# 'austal-input=austaltools.austal_input:main',
# 'configure-austaltools=austaltools.configure_austaltools:main',
# ],
# },
# author=v['__author__'],
# author_email=v['__author_email__'],
# license=v['__license__'],
# url=v['__url__'],
# install_requires=[
# "ecmwf-datastores-client",
# "gdal",
# "meteolib",
# "netcdf4",
# "numpy",
# "pandas",
# "pyyaml",
# "readmet",
# "requests",
# "setuptools",
# "tqdm",
# "pyyaml",
# "urllib3",
# ],
# description=v['__description__'],
# long_description=open('README.md').read(),
# long_description_content_type='text/markdown',
# )