-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.37 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Remove and/or rearrange sections from each line of a file(s).',
'author': 'J.P. Weiser',
'url': 'https://github.com/jpweiser/cuts',
'download_url': 'https://github.com/jpweiser/cuts/tarball/master',
'author_email': '[email protected]',
'version': '0.37.7',
'install_requires': [],
'packages': ['cuts'],
'scripts': ['bin/cuts'],
'name': 'cuts',
'classifiers' : [
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD :: BSD/OS",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: Other",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Topic :: Text Editors",
"Topic :: Text Editors :: Documentation",
"Topic :: Text Editors :: Text Processing",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: General",
"Topic :: Utilities"],
}
setup(**config)