1
0
mirror of https://github.com/gryf/ferrit.git synced 2026-02-07 16:55:47 +01:00

Added python package setup and tox

This commit is contained in:
2019-10-28 19:13:04 +01:00
parent e22fac98fc
commit 57bf9556c7
3 changed files with 83 additions and 0 deletions

40
setup.py Normal file
View File

@@ -0,0 +1,40 @@
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = ['paramiko', 'bottle']
setup(author="Roman Dobosz, Szymon Datko",
author_email='gryf73@gmail.com',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, '
'!=3.5.*',
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'],
description="Ferrit is a fake gerrit server for testing purposes",
entry_points={'console_scripts': ['ferrit=ferrit.cli:main']},
install_requires=requirements,
license="BSD license",
long_description=readme,
include_package_data=True,
keywords='ferrit',
name='ferrit',
packages=find_packages(include=['ferrit', 'ferrit.*']),
test_suite='tests',
url='https://github.com/gryf/ferrit',
version='0.0.1',
zip_safe=False)