Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
digitronik committed Dec 25, 2018
1 parent 9a9dbb7 commit f57b604
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from setuptools import setup, find_packages


with open("README.md") as readme_file:
readme = readme_file.read()

install_requirements = ["Click>=5.0", "docker>=3.1", "PyYAML>=3.0"]

setup_requirements = ["setuptools_scm"]

setup(
author="Nikhil Dhandre",
author_email="nik.digitronik@live.com",
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
description="Miq Selenium Server for local testing",
entry_points={"console_scripts": ["miqsel=miqsel.miqsel:cli"]},
install_requires=install_requirements,
long_description=readme,
long_description_content_type='text/markdown',
include_package_data=True,
setup_requires=setup_requirements,
keywords="miqsel",
name="miqsel",
packages=find_packages(include=["miqsel"]),
url="https://github.com/digitronik/miqsel",
version="0.1.0",
license="GPLv3",
zip_safe=False,
)

0 comments on commit f57b604

Please sign in to comment.