mirror of
https://github.com/fedora-python/tox-current-env.git
synced 2024-12-27 02:16:13 +01:00
10 lines
123 B
Python
10 lines
123 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="test",
|
|
extras_require={
|
|
"dev": [],
|
|
"full": [],
|
|
}
|
|
)
|