You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
379 B
19 lines
379 B
#!/usr/bin/env python3
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='hrochbot',
|
|
version='1.0',
|
|
description='Discordový robot pro KSP',
|
|
packages=['hrochobot', 'hrochobot/cogs', 'hrochobot/utils'],
|
|
scripts=[
|
|
'bin/hrochobot',
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=[
|
|
'py-cord',
|
|
'requests',
|
|
],
|
|
)
|
|
|