-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
33 lines (27 loc) · 946 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
33
import os
from setuptools import find_packages, setup
GITHUB_URL = 'https://github.com/Turbo87/aerofiles/'
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='aerofiles',
version='1.4.0',
description='waypoint, task, tracklog readers and writers for aviation',
long_description=read('README.rst'),
url=GITHUB_URL,
license='MIT',
author='Tobias Bieniek',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
],
packages=find_packages(exclude=['tests*']),
)