1
0
mirror of https://github.com/gryf/ferrit.git synced 2026-02-07 08:45:53 +01:00
Files
ferrit/setup.py
gryf ce6e2f19c8 Support python 3.6 or 3.7.
Python 2.7 is EOL, and 3.8 will be (re) added soon, since it's
unavailable on most distributions.
2019-11-01 08:19:51 +01:00

37 lines
1.2 KiB
Python

#!/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='>=3.6',
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
description="Ferrit is a fake gerrit server for testing purposes",
entry_points={'console_scripts': ['ferrit=ferrit.service: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)