16 lines
309 B
Python
16 lines
309 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="rainbowadn",
|
|
version="0.0.0-alpha.0",
|
|
packages=[
|
|
"rainbowadn.core",
|
|
"rainbowadn.instrument",
|
|
],
|
|
url="https://gitea.parrrate.ru/PTV/rainbowadn",
|
|
license="",
|
|
author="PARRRATE TNV",
|
|
author_email="",
|
|
description="",
|
|
)
|