-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (43 loc) · 1.16 KB
/
setup.py
File metadata and controls
48 lines (43 loc) · 1.16 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""dk-tasklib - pyinvoke task library
"""
import os
import sys
import setuptools
classifiers = """\
Development Status :: 3 - Alpha
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Topic :: Software Development :: Libraries
"""
version = '3.0.6'
DIRNAME = os.path.dirname(__file__)
setuptools.setup(
name='dk-tasklib',
version=version,
install_requires=[
"invoke",
"PyYAML",
"dkfileutils>=1.4.2",
"pathtools",
"yamldirs>=1.1.8",
],
author='Bjorn Pettersen',
author_email='bp@datakortet.no',
url='https://github.com/datakortet/dk-tasklib',
description=__doc__.strip(),
classifiers=[line for line in classifiers.split('\n') if line],
long_description=open('README.rst').read(),
packages=setuptools.find_packages(exclude=['tests']),
entry_points={
'console_scripts': """
dk-tasklib = dktasklib.entry_points.dktasklibcmd:main
"""
},
zip_safe=False,
)