-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 850 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import find_packages, setup
setup(
name="create-tox-app",
version="1.0.1",
url="https://github.com/wozniakpl/create-tox-app.git",
author="Bartosz Woźniak",
author_email="[email protected]",
description="A wrapper that creates a tox env with the minimal setup for a Python app.",
long_description=open( # noqa # pylint: disable=consider-using-with,unspecified-encoding
"README.rst"
).read(),
packages=find_packages(),
install_requires=[],
entry_points={"console_scripts": ["create-tox-app = create_tox_app.__main__:main"]},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python",
],
)