File: setup.py

package info (click to toggle)
python-whey-pth 0.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 456 kB
  • sloc: python: 459; sh: 17; makefile: 6
file content (27 lines) | stat: -rw-r--r-- 589 bytes parent folder | download
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
#!/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('.')

extras_require = {}

repo_root = pathlib.Path(__file__).parent
install_requires = (repo_root / "requirements.txt").read_text(encoding="UTF-8").split('\n')

setup(
		description="Extension to whey to support .pth files.",
		extras_require=extras_require,
		install_requires=install_requires,
		name="whey-pth",
		py_modules=[],
		)

shutil.rmtree("whey_pth.egg-info", ignore_errors=True)