forked from Turbo87/aerofiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 936 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, find_packages
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.0.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='tobias.bieniek@gmx.de',
classifiers=[
'Development Status :: 1 - Planning',
'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*']),
)