-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (50 loc) · 1.58 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
56
57
58
#!/usr/bin/env python
"""
ogspy
python api for opengeosys 5
"""
DOCLINES = __doc__.split("\n")
readme = open('LICENSE').read()
CLASSIFIERS = """\
Development Status :: 5 - alpha
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Natural Language :: English
Operating System :: MacOS
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
Topic :: Software Development
Topic :: Utilities
"""
MAJOR = 0
MINOR = 1
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
from setuptools import setup, find_packages
metadata = dict(
name = 'ogspy',
version=VERSION,
maintainer = "Falk Hesse, Miao Jing, Sebastian Mueller",
maintainer_email = "falk.hesze (at) gmail (dot) com",
description = DOCLINES[0],
long_description = readme,
author = "Falk Hesse, Miao Jing, Sebastian Mueller",
author_email = "falk.hesze (at) gmail (dot) com",
license = 'LGPL - see LICENSE',
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
platforms = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
include_package_data=True,
install_requires=['numpy'],
packages=find_packages(),
)
setup(**metadata)