mirror of
https://github.com/wassname/pip-package-list.git
synced 2026-06-27 16:10:20 +08:00
7 lines
145 B
Python
7 lines
145 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="mywhopackage",
|
|
install_requires=["django==1.0", "cookie>=1.2", "-r ../test.txt", "-e ..",],
|
|
)
|