-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.54 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.54 KB
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
# -*- coding: utf-8 -*-
"""A setuptools based setup module."""
from __future__ import unicode_literals
import os
import codecs
from setuptools import setup
# Get the long description from the README file
HERE = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(HERE, 'README.rst'), encoding='utf-8') as stream:
LONG_DESCRIPTION = '\n'.join(stream.read().split('\n')[5:])
setup(
name='dir-edit',
version='3.1.0',
description='Rename or remove files in a directory using an editor',
long_description=LONG_DESCRIPTION,
author='Johannes Weißl',
author_email='jargon@molb.org',
url='https://github.com/weisslj/dir-edit',
license='GPLv3+',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Utilities',
],
py_modules=[
'dir_edit',
],
entry_points={
'console_scripts': [
'dir_edit=dir_edit:main',
],
},
test_suite='test_dir_edit',
python_requires='>=3.9',
)