-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 900 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
def readme():
f = open('README.rst')
info = f.read()
f.close()
return info
setup(
name='colordiffs',
version='0.1.8',
description='Syntax highlights for your git diffs',
author='Ng Zhi An',
author_email='[email protected]',
url='https://github.com/ngzhian/colordiffs',
packages=['colordiffs'],
long_description=readme(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
install_requires=[
"Pygments>=2.0.2",
],
scripts=['scripts/colordiffs'],
)