forked from ymattw/ydiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (45 loc) · 1.35 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
46
47
48
49
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
from ydiff import __version__, __homepage__, __description__
with open('README.rst') as doc:
long_description = doc.read()
with open('CHANGES.rst') as changes:
long_description += changes.read()
setup(
name='ydiff',
version=__version__,
author='Matt Wang',
license='BSD-3',
description=__description__,
long_description=long_description,
keywords='colored incremental side-by-side diff',
url=__homepage__,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
python_requires='>=3.3', # see sys.hexversion check in ydiff.py
py_modules=['ydiff'],
entry_points={
'console_scripts': [
'ydiff = ydiff:_main',
],
},
include_package_data=True,
package_data={
'ydiff': [
'CHANGES.rst',
],
},
)
# vim:set et sts=4 sw=4 tw=79: