forked from elmotec/massedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (39 loc) · 1.54 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
#!/usr/bin/env python
# encoding: utf-8
"""Packaging script."""
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(here, 'README.rst')).read()
setup(
name="massedit",
version="0.68.4",
author="Jérôme Lecomte",
author_email="[email protected]",
description='Edit multiple files using Python text processing modules',
license="MIT",
keywords="sed editor stream python edit mass",
url="http://github.com/elmotec/massedit",
py_modules=['massedit'],
entry_points={'console_scripts': ['massedit=massedit:main']},
long_description=readme,
test_suite='tests',
setup_requires=[],
tests_require=['mock'],
classifiers=["Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Text Editors :: Text Processing",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
"Intended Audience :: Developers",
],
)