Skip to content
Snippets Groups Projects
Commit 1ab5d871ce3c authored by Georges Racinet's avatar Georges Racinet
Browse files

dist: hgext3rd.heptapod now included

It'd been simply forgotten. In order to avoid that
in case of future changes, we switch to the standard
`find_packages()`. This has the side effect of including
the various tests packages, but that isn't a problem for
so small a project, and it might even be a good thing for
repackagers (Linux distributions…) that need to launch the tests.
parent 30468b5bf711
No related branches found
No related tags found
No related merge requests found
from setuptools import setup
from setuptools import setup, find_packages
with open('install-requirements.txt', 'r') as install_reqf:
install_req = [req.strip() for req in install_reqf]
......@@ -15,7 +15,7 @@
keywords='hg mercurial heptapod gitlab',
license='GPLv2+',
package_data=dict(heptapod=['*.hgrc']),
packages=['heptapod', 'hgext3rd'],
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment