-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (33 loc) · 1.06 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
from setuptools import find_packages, setup
with open("VERSION", "r") as f:
version = f.read().strip()
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
required = f.read().splitlines()
setup(
name="elgarrobo",
version=version,
description="Herramienta Macros de chepecarlos",
author="ChepeCarlos",
author_email="[email protected]",
url="https://github.com/chepecarlos/ElGatoALSW",
project_urls={
"Bug Tracker": "https://github.com/chepecarlos/ElGatoALSW/issues",
},
install_requires=required,
packages=find_packages(where="src", exclude=("tests*", "testing*")),
package_dir={"": "src"},
# data_files={"data/*"},
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
entry_points={"console_scripts": [
"elgarrobo-cli = elGarrobo.main:main",
"elgarrobo-tool = elGarrobo.tool:main"
]},
include_package_data = True,
package_data = {
'': ['*.md'],
}
)