-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (33 loc) · 1.06 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
from setuptools import find_packages
from setuptools import setup
import nametrans
setup(
name='nametrans',
version=nametrans.__version__,
description='Rename files with regex search/replace semantics',
author='Martin Matusiak',
author_email='[email protected]',
url='https://github.com/numerodix/nametrans',
packages=find_packages('.'),
package_dir={'': '.'},
install_requires=[
'ansicolor',
],
entry_points={
"console_scripts": [
"nametrans = nametrans.main:main",
]
},
# don't install as zipped egg
zip_safe=False,
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
],
)