15 lines
332 B
Python
Executable file
15 lines
332 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import sys
|
|
|
|
from setuptools import setup
|
|
from setuptools.command.test import test as TestCommand
|
|
|
|
|
|
setup(
|
|
packages=["larigira", "larigira.dbadmin", "larigira.filters"],
|
|
tests_require=["pytest-timeout==1.0", "py>=1.4.29", "pytest~=7.0"],
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
)
|