-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.43 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README_PYPI.rst') as file:
long_description = file.read()
setup(name='poirot',
version='1.0.0',
author='Emanuel Feld',
author_email='[email protected]',
description="Investigate a Git repository's revision history to find text patterns.",
long_description=long_description,
url='https://github.com/dcgov/poirot',
license='https://raw.githubusercontent.com/DCgov/poirot/master/LICENSE.md',
packages=['poirot'],
install_requires=[
'tqdm>=3.4.0',
'Jinja2>=2.8',
'regex>=2015.11.22',
'requests>=2.9.1'
],
test_suite='nose.collector',
tests_require=['nose-progressive'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'License :: Public Domain',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
include_package_data=True,
entry_points={
'console_scripts': [
'poirot=poirot.poirot:main',
]
},
zip_safe=False)