-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 827 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
33
34
35
36
37
38
from setuptools import setup
with open("requirements.txt", "r") as file:
requirements = file.read().splitlines()
setup(
name="hashtablebot",
version="0.1.0",
packages=[
"hashtablebot",
"hashtablebot.entity",
"hashtablebot.banking",
"hashtablebot.persistence",
"hashtablebot.memory_entity",
],
url="",
license="",
author="douglascdev",
author_email="",
description="",
entry_points={
"console_scripts": [
"hashtablebot = hashtablebot.main:main",
],
},
install_requires=requirements,
extras_require={
"dev": [
"sphinx",
"sphinx_rtd_theme",
"black",
"isort",
"mypy",
"coverage",
"pre-commit",
]
},
)