forked from yaph/geonamescache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.18 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
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import setup, find_packages
from geonamescache import __version__
setup(
name='geonamescache',
version=__version__,
description='Geonames data for continents, cities and US states.',
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
author='Ramiro Gómez',
author_email='[email protected]',
url='https://github.com/yaph/geonamescache',
license='MIT',
packages=find_packages(exclude=('tests', 'bin')),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules'
],
test_suite='tests',
tests_require=['pytest'],
)