-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 762 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 762 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
29
30
31
"""Setup."""
from __future__ import with_statement
from setuptools import setup
setup(
name='date_format_machine',
version='0.7',
description='Tool for manipulating date strings',
url='https://github.com/ryantownshend/date_format_machine',
author='Ryan Townshend',
author_email='citizen.townshend@gmail.com',
install_requires=[
'click>=7.0',
'click-log>=0.3.2',
'pendulum>=2.0.3',
'tabulate>=0.8.2',
'PyYAML>=3.13',
],
py_modules=['dfm'],
packages=['dfm'],
package_data={
'dfm':
['dfm_formats.yaml']
},
entry_points={
'console_scripts': [
'dfm = dfm.dfm:cli',
'date_format_machine = dfm.dfm:cli',
],
},
)