-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·55 lines (53 loc) · 1.54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
from __future__ import annotations
import setuptools
setuptools.setup(
name='bestmobabot',
version='3.4.0b2',
author='Pavel Perestoronin',
author_email='eigenein@gmail.com',
description='Hero Wars game bot 🏆',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/eigenein/bestmobabot',
packages=setuptools.find_packages(exclude=['tests']),
package_data={
'': ['*'],
},
python_requires='>=3.8',
install_requires=[
'click',
'numpy',
'pandas',
'pydantic',
'pyyaml',
'requests',
'scikit-learn',
'scipy',
'ipython',
'loguru',
'beautifulsoup4',
],
tests_require=['pytest'],
extras_require={},
entry_points={
'console_scripts': [
'bestmobabot = bestmobabot.__main__:main',
'bestmobabot.trainer = bestmobabot.trainer:main',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Other Audience',
'License :: Free for non-commercial use',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: Games/Entertainment',
],
zip_safe=True,
)