-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 763 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 763 Bytes
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
from setuptools import setup
import os.path
# Get the version:
version = {}
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'version.py')) as f: exec(f.read(), version)
setup(
name = 'ctupdate',
version = version['__version__'],
description = 'A simple script to bulk update file ctime attributes',
author = 'Alastair Droop',
author_email = 'alastair.droop@gmail.com',
url = 'https://github.com/alastair.droop/ctupdate',
classifiers = [
'Programming Language :: Python'
],
py_modules = ['ctupdate', 'version'],
install_requires = [
'argparse'
],
python_requires = '>=2.7',
entry_points = {
'console_scripts': [
'ctupdate=ctupdate:main'
]
}
)