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

setup: separate requirements file

parent 3fa274ea3a02
No related branches found
No related tags found
No related merge requests found
Pipeline #
Mercurial>=5.2
hg-evolve>=9.2.1
from setuptools import setup
with open('install-requirements.txt', 'r') as install_reqf:
install_req = [req.strip() for req in install_reqf]
setup(
name='heptapod',
......@@ -12,5 +14,5 @@
keywords='hg mercurial heptapod gitlab',
license='GPLv2+',
packages=['heptapod', 'hgext3rd'],
install_requires=['Mercurial'],
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