File: Makefile.am

package info (click to toggle)
knot 3.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,804 kB
  • sloc: ansic: 153,806; sh: 5,822; python: 1,141; makefile: 817
file content (19 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
EXTRA_DIST =				\
	knot_exporter/__init__.py	\
	knot_exporter/knot_exporter.py	\
	pyproject.toml.in		\
	setup.py.in			\
	README.md

clean-local:
	-rm -rf dist *.egg-info

dist: clean-local
	@if hatchling -h &> /dev/null; then \
	  hatchling build; \
	else \
	  python3 setup.py sdist; \
	fi

upload:
	twine upload dist/*