-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathsetup.py
31 lines (27 loc) · 919 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
import setuptools
def readme_text():
with open('README.md') as f:
return f.read()
setuptools.setup(
name='pokebase',
packages=['pokebase'],
version='1.4.1',
description='A Python wrapper for the friendly PokeAPI database',
long_description=readme_text(),
long_description_content_type='text/markdown',
author='Greg Hilmes',
author_email='[email protected]',
url='https://github.com/PokeAPI/pokebase',
keywords=['database', 'pokemon', 'wrapper'],
install_requires=['requests'],
license='BSD License',
requires_python=">=3.8",
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
]
)