-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1.27 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as fh:
long_description = fh.read()
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
VERSION = '0.0.1'
DESCRIPTION = 'Retrieve given location features using OpenStreetMap'
LONG_DESCRIPTION = 'Library that utilizes the OpenStreetMap (OSM) database and Overpass API to retrieve location features and perform various calculations based on the given location.'
# Setting up
setup(
name='osmlf',
version=VERSION,
author='ccan23',
author_email='[email protected]',
url='https://github.com/ccan23/osmlf',
license='MIT',
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=install_requires,
keywords=['python', 'map', 'openstreetmap', 'amenities', 'location', 'coordinates', 'latitude', 'longitude'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License'
]
)