-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.15 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
from io import open
from os import path
from setuptools import setup, find_packages
from typing import Final
VERSION: Final[str] = '1.0.10'
DESCRIPTION: Final[str] = 'An easy way to find a countries coordinates by name'
here = path.abspath(os.path.dirname(__file__))
try:
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = '\n' + f.read()
except FileNotFoundError:
LONG_DESCRIPTION = DESCRIPTION
setup(
name="pygeolocate",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/Scrumpyy/pygeolocate",
project_urls={
"Bug Tracker": "https://github.com/Scrumpyy/pygeolocate/issues",
},
author="Isabelle",
author_email="[email protected]",
license='MIT',
packages=find_packages(),
install_requires=[],
keywords='location, geolocation, geolocate',
classifiers= [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
],
)