forked from domdfcoding/domdf_python_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 670 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (21 loc) · 670 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
#!/usr/bin/env python
# This file is managed by 'repo_helper'. Don't edit it directly.
# stdlib
import pathlib
import shutil
import sys
# 3rd party
from setuptools import setup
sys.path.append('.')
# this package
from __pkginfo__ import * # pylint: disable=wildcard-import
repo_root = pathlib.Path(__file__).parent
install_requires = (repo_root / "requirements.txt").read_text(encoding="UTF-8").split('\n')
setup(
description="Helpful functions for Python 🐍 🛠️",
extras_require=extras_require,
install_requires=install_requires,
name="domdf-python-tools",
py_modules=[],
)
shutil.rmtree("domdf_python_tools.egg-info", ignore_errors=True)