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

packaging: fixed Python packages list

The usual mistake that becomes blatant at first actual production
of a distribution.
parent 7210aded
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]
......@@ -13,7 +13,6 @@
long_description=open('README.md').read(),
keywords='hg mercurial heptapod gitlab',
license='GPLv2+',
package_data=dict(heptapod=['*.hgrc']),
packages=['hgitaly', 'hgext3rd.hgitaly'],
packages=find_packages(),
install_requires=install_req,
)
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