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.
pyentrypoint/setup.py

60 lines
1.5 KiB
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
# Thanks Sam and Max
5 years ago
__version__ = '0.5.2'
8 years ago
if __name__ == '__main__':
setup(
8 years ago
name='pyentrypoint',
8 years ago
version=__version__,
8 years ago
packages=find_packages(),
8 years ago
author="Christophe Mehay",
8 years ago
author_email="cmehay@nospam.student.42.fr",
8 years ago
description="pyentrypoint manages entrypoints in Docker containers.",
8 years ago
long_description=open('README.md').read(),
8 years ago
install_requires=['Jinja2>=2.8',
'PyYAML>=3.11',
'colorlog>=2.6.1',
8 years ago
'six>=1.10.0',
'watchdog>=0.8.3'],
8 years ago
include_package_data=True,
8 years ago
url='http://github.com/cmehay/pyentrypoint',
8 years ago
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Topic :: System :: Installation/Setup",
],
8 years ago
entry_points={
'console_scripts': [
'pyentrypoint = pyentrypoint.__main__:main',
],
},
license="WTFPL",
)