-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 923 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
import setuptools
import pathlib
with open("requirements.txt") as f:
requirements = f.read().splitlines()
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setuptools.setup(
name="daktari",
version="0.0.238",
description="Assist in setting up and maintaining developer environments",
long_description=README,
long_description_content_type="text/markdown",
license="MIT",
author="Matt Russell",
author_email="[email protected]",
url="https://github.com/sonocent/daktari",
packages=setuptools.find_packages(),
install_requires=requirements,
python_requires=">=3.9",
entry_points={
"console_scripts": [
"daktari = daktari.__main__:main",
],
},
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
)