forked from thebjorn/dk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 896 Bytes
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The Datakortet Basic utilities package: `dk`.
"""
classifiers = """\
Development Status :: 3 - Alpha
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries
"""
import setuptools
version = '1.2.1'
setuptools.setup(
name='dk',
version=version,
requires=[],
install_requires=[
'ipaddr', # from dk.iplist
],
description=__doc__.strip(),
classifiers=[line for line in classifiers.split('\n') if line],
long_description=open('README.rst').read(),
license="LGPL",
author='Bjorn Pettersen',
author_email='[email protected]',
url="http://www.github.com/datakortet/dk/",
download_url='https://www.github.com/datakortet/dk',
packages=setuptools.find_packages(exclude=['tests*']),
zip_safe=False,
)