-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1 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
from setuptools import setup, find_packages
setup(
name='swpackage',
version='1.0.0',
description='a python project to interact with the Star Wars API',
author='fajkoson',
author_email='[email protected]',
url='https://github.com/fajkoson/swapi/',
packages=find_packages(where='src'),
package_dir={'': 'src'},
python_requires='>=3.12',
install_requires=[
'aiohttp>=3.7.4',
'PyYAML>=6.0.1',
'aiofiles>=23.2.1',
],
extras_require={
'dev': [
'pytest>=6.2.2',
'pytest-asyncio>=0.14.0',
'mypy>=1.9.0',
'pytest>=8.1.1',
'pytest-mock>=3.12.0',
'types-aiofiles>=23.2.0.20240311',
'types-PyYAML>=6.0.12.20240311',
],
},
entry_points={
'console_scripts': [
'swpackage=swpackage.sw_world:run_main',
'tests=tests.run_tests:run_main',
],
},
include_package_data=True,
)