-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 962 Bytes
/
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
import os
from setuptools import setup
import sys
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def conf_path(name):
if sys.prefix == '/usr':
conf_path = os.path.join('/etc', name)
else:
conf_path = os.path.join(sys.prefix, 'etc', name)
return conf_path
setup(
name = "pynetcdf2littler",
version = "0.0.1",
author = "Ronald van Haren",
author_email = "[email protected]",
description = ("Python wrapper for netcdf2littler"),
license = "Apache 2.0",
keywords = "",
url = "https://github.com/ERA-URBAN/pynetcdf2littler",
packages=['pynetcdf2littler'],
scripts=['pynetcdf2littler/scripts/pynetcdf2littler'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved ::Apache Software License",
],
)