-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·41 lines (35 loc) · 1.22 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
#!/usr/bin/env python
import sys
from data_gc_ca_api.__version__ import version
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
if float(sys.version[:3]) >= 2.7:
required_packages = []
else:
required_packages = ["elementtree>=1.2.7"]
setup(name='data-gc-ca-api',
version = version,
license = "'GPL3' or 'Apache 2'",
description = 'Utility for Accessing Environment Canada Data',
author = 'Ian Gable',
author_email = '[email protected]',
url = 'https://github.com/igable/data-gc-ca-api',
scripts=['weatherca'],
packages = ['data_gc_ca_api'],
install_requires = required_packages,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
],
)