mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 01:34:55 +07:00
Parse "dependency_links" and merge its requirements with requirements from "requires" args
9 lines
334 B
Python
9 lines
334 B
Python
from setuptools import setup
|
|
|
|
setup(name='foo',
|
|
version=0.1,
|
|
install_requires = ["sqlalchemy >=1.0.12, <1.1",
|
|
"mysql-connector-python >=2.1.3, <2.2",],
|
|
dependency_links = [
|
|
"git+https://github.com/mysql/mysql-connector-python.git@2.1.3#egg=mysql-connector-python-2.1.3",
|
|
]) |