-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 780 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 780 Bytes
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
from setuptools import find_packages, setup
with open(file="README.md", mode="r") as readme_handle:
long_description = readme_handle.read()
with open("VERSION", "r") as f:
version = f.read().strip()
with open("requirements.txt", "r") as f:
required = f.read().splitlines()
setup(
name='alsw_bot',
version=version,
description='Bot Chat de ALSW',
long_description=long_description,
author='ChepeCarlos',
author_email='chepecarlos@alswblog.org',
url='https://github.com/chepecarlos/tooltube',
install_requires=required,
packages=find_packages(where='src', exclude=('tests*', 'testing*')),
package_dir={"": "src"},
entry_points={
'console_scripts': [
'alswbot = alswbot.alswbot:main'
]
},
)