-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.48 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
def getVersion():
with open(os.path.join(os.path.dirname(__file__),'map/version.py')) as f:
exec(f.read(), globals())
return __version__
setup(name = "map",
version = getVersion(),
description = "map applies a command to files/folders at a certain path.",
author = "Thomas Locher",
author_email = "[email protected]",
url = "https://github.com/THLO/map",
download_url = "https://github.com/THLO/map/tarball/v."+getVersion(),
packages = find_packages(include=['map', 'map.*']),
scripts = ['map/map'],
long_description = "The same functionality to apply a command to \
multiple files/folders\ncan be achieved using for loops or find -exec or \
similar tools.\nThe advantage of map is that it is easier and more \
convenient to use.\nMore information on map can be found at \
https://github.com/THLO/map or by running map --help.",
license = 'GNU General Public License v3 (GPLv3)',
platforms = 'POSIX',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Desktop Environment',
]
)