forked from ymattw/ydiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (40 loc) · 1.3 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import with_statement
from distutils.core import setup
from cdiff import META_INFO as _meta
import sys
if sys.hexversion < 0x02050000:
raise SystemExit("*** Requires python >= 2.5.0")
with open('README.rst') as doc:
long_description = doc.read()
with open('CHANGES') as changes:
long_description += changes.read()
setup(
name = 'cdiff',
version = _meta['version'],
author = _meta['author'],
author_email = _meta['email'],
license = _meta['license'],
description = _meta['description'],
long_description = long_description,
keywords = _meta['keywords'],
url = _meta['url'],
# 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 :: 2',
'Programming Language :: Python :: 3',
],
py_modules = ['cdiff'],
scripts = ['cdiff'],
)
# vim:set et sts=4 sw=4 tw=79: