15 lines
258 B
Python
15 lines
258 B
Python
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='builtup4',
|
|
version='0.1.0.0',
|
|
packages=['bu4'],
|
|
url='',
|
|
license='',
|
|
author='PARRRATE T&V',
|
|
author_email='',
|
|
description=''
|
|
)
|