Ashhhleyyy
94364d5cf2
All checks were successful
Publish docker image / Publish (push) Successful in 2m24s
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.0.0',
|
|
packages=find_packages(),
|
|
scripts=['app.py'],
|
|
)
|