Ashhhleyyy
79df955e37
All checks were successful
Publish docker image / Publish (push) Successful in 2m53s
9 lines
176 B
Python
9 lines
176 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name='aci',
|
|
version='1.1.0',
|
|
packages=find_packages(),
|
|
scripts=['app.py'],
|
|
)
|