59 lines
1.6 KiB
Python
59 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
with open('README.rst') as readme_file:
|
|
readme = readme_file.read()
|
|
|
|
with open('HISTORY.rst') as history_file:
|
|
history = history_file.read()
|
|
|
|
requirements = [
|
|
# TODO: put package requirements here
|
|
]
|
|
|
|
test_requirements = [
|
|
# TODO: put package test requirements here
|
|
]
|
|
|
|
setup(
|
|
name='git_lint',
|
|
version='0.0.2',
|
|
description="A git command to lint everything in your workspace (or stage) that was changed since the last commit.",
|
|
long_description=readme + '\n\n' + history,
|
|
author="Kenneth M. "Elf" Sternberg",
|
|
author_email='elf.sternberg@gmail.com',
|
|
url='https://github.com/elfsternberg/git_lint',
|
|
packages=[
|
|
'git_lint',
|
|
],
|
|
package_dir={'git_lint':
|
|
'git_lint'},
|
|
include_package_data=True,
|
|
install_requires=requirements,
|
|
license="ISCL",
|
|
zip_safe=False,
|
|
keywords='git_lint',
|
|
classifiers=[
|
|
'Development Status :: 2 - Pre-Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: ISC License (ISCL)',
|
|
'Natural Language :: English',
|
|
"Programming Language :: Python :: 2",
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
],
|
|
test_suite='tests',
|
|
tests_require=test_requirements
|
|
)
|