-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 loc) · 1.09 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
setup(
name="gmalthgtparser",
version=read('VERSION'),
author="Jonathan Bouzekri",
author_email="[email protected]",
description="Parse HGT files",
license="MIT",
keywords="parser, hgt, srtm, file",
url="http://github.com/gmalt/hgtparser",
packages=find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
long_description=read('README.rst'),
extras_require={
'test': ['pytest', 'flake8', 'mock']
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
]
)