13 lines
223 B
Python
13 lines
223 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="fleabay",
|
|
version="0.0.1",
|
|
packages=["fleabay"],
|
|
url="",
|
|
license="",
|
|
author="reivilibre",
|
|
author_email="",
|
|
description="Flexible eBay front-end",
|
|
)
|