-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 972 Bytes
/
setup.py
File metadata and controls
42 lines (36 loc) · 972 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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""dkpkg - standardized package structure names
"""
classifiers = """\
Development Status :: 3 - Alpha
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries
"""
import setuptools
version = '2.0.4'
setuptools.setup(
name='dkpkg',
version=version,
install_requires=[
'invoke',
'PyYAML',
'dkfileutils',
'dk-tasklib',
'yamldirs',
],
author='Bjorn Pettersen',
author_email='bp@datakortet.no',
url='https://github.com/datakortet/dkpkg',
license='BSD',
description=__doc__.strip(),
classifiers=[line for line in classifiers.split('\n') if line],
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
zip_safe=False,
)