You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
444 B
Python
16 lines
444 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="Market Look",
|
|
description="An API application used for tracking promotion compliance at store",
|
|
zip_safe=False,
|
|
author="Drew Bednar",
|
|
author_email="andrew.bednar@kellogg.com",
|
|
packages=find_packages(exclude=['tests'], include=['scripts', 'market_look']),
|
|
entry_points={
|
|
"console_scripts": [
|
|
"manage=market_look.cli:cli"
|
|
]
|
|
}
|
|
)
|