-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.46 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (51 loc) · 1.46 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
description = "create & track file metadata"
with open("VERSION") as F:
version = F.read().strip()
entry_points = {
'console_scripts': [
'mad = mad2.cli.main:dispatch',
# 'sha1p = mad2.cli.sha1p:dispatch',
# 'qdsum = mad2.cli.qdsum:dispatch'
]}
setup(name='mad2',
version=version,
description=description,
author='Mark Fiers',
zip_safe=False,
author_email='mark.fiers42@gmail.com',
entry_points=entry_points,
include_package_data=True,
url='http://mfiers.github.com/mad2',
packages=find_packages(),
install_requires=[
'Leip',
'Fantail',
'humanize',
'Jinja2',
'lockfile',
'pytimeparse',
'python-dateutil',
'pymongo',
'colorlog',
'pytimeparse',
'arrow',
'termcolor',
'readline',
'toMaKe',
'iso8601',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)