You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
6 years ago
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""The setup script."""
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
with open('README.rst') as readme_file:
|
||
|
readme = readme_file.read()
|
||
|
|
||
|
with open('HISTORY.rst') as history_file:
|
||
|
history = history_file.read()
|
||
|
|
||
|
requirements = ['Click>=6.0', ]
|
||
|
|
||
|
setup_requirements = ['pytest-runner', ]
|
||
|
|
||
|
test_requirements = ['pytest', ]
|
||
|
|
||
|
setup(
|
||
|
author="Holger Frey",
|
||
|
author_email='frey@imtek.de',
|
||
|
classifiers=[
|
||
|
'Development Status :: 2 - Pre-Alpha',
|
||
|
'Intended Audience :: Developers',
|
||
|
'Natural Language :: English',
|
||
|
"Programming Language :: Python :: 2",
|
||
|
'Programming Language :: Python :: 2.7',
|
||
|
'Programming Language :: Python :: 3',
|
||
|
'Programming Language :: Python :: 3.4',
|
||
|
'Programming Language :: Python :: 3.5',
|
||
|
'Programming Language :: Python :: 3.6',
|
||
|
'Programming Language :: Python :: 3.7',
|
||
|
],
|
||
|
description="Renaming files for SensoSpot and Scienion software",
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
's2rename=s2rename.cli:main',
|
||
|
],
|
||
|
},
|
||
|
install_requires=requirements,
|
||
|
long_description=readme + '\n\n' + history,
|
||
|
include_package_data=True,
|
||
|
keywords='s2rename',
|
||
|
name='s2rename',
|
||
|
packages=find_packages(include=['s2rename']),
|
||
|
setup_requires=setup_requirements,
|
||
|
test_suite='tests',
|
||
|
tests_require=test_requirements,
|
||
|
url='https://github.com/audreyr/s2rename',
|
||
|
version='0.0.1',
|
||
|
zip_safe=False,
|
||
|
)
|