-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
setup.py
32 lines (29 loc) · 954 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
32
from os import path
from setuptools import setup, find_packages
from src.version import version
install_requires = [
"requests==2.26.0",
"PySide6==6.2.0",
"toml==0.10.2",
"pillow==8.4.0",
"pyaoaddons==0.2.8"
]
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='aostats',
author="Wiktor Mazur",
version=version,
author_email="wiktormazur1@gmail.com",
url="https://github.com/mazurwiktor/albion-online-stats",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages('.', include=('src*')),
include_package_data=True,
install_requires=install_requires,
entry_points={
'console_scripts': [
'aostats = src.__main__:run'
]
})