-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.47 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
# !/usr/bin/env python3
# -*- coding: utf-8 -*-
from navigation import __version__
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
with open("CHANGELOG.md") as history_file:
history = history_file.read()
setup(
name='pynavigation',
version=__version__,
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_dir={
"navigation": "navigation"
},
description='A library that models units for navigation on Earth.',
long_description=readme,
long_description_content_type="text/markdown",
author='Niall Grant',
license='Apache2',
author_email='[email protected]',
url='https://github.com/ngfgrant/navigation',
keywords=['navigation', 'waypoint', 'position', 'route',
'latitude', 'longitude'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3',
)