22 lines
477 B
Python
22 lines
477 B
Python
|
|
import os
|
|
import shutil
|
|
import stat
|
|
from setuptools import setup
|
|
from setuptools.command.install import install
|
|
|
|
NAME = 'file_mover'
|
|
VERSION = '1'
|
|
AUTHOR = 'Thomas Klaehn'
|
|
EMAIL = 'tkl@blackfinn.de'
|
|
PACKAGES = [NAME]
|
|
|
|
ENTRY_POINTS = {
|
|
'console_scripts': [
|
|
'file_mover = file_mover.main:main'
|
|
]
|
|
}
|
|
|
|
setup(name=NAME, version=VERSION, long_description=__doc__, author=AUTHOR, author_email=EMAIL,
|
|
packages=PACKAGES, zip_safe=False, entry_points=ENTRY_POINTS)
|