mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
13bd83ad30
(corrected lib/update-external.sh by Andrew Bartlett) Change-Id: I0f992b949b1717635ff26fa0db6073675cce4ad7 Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
26 lines
674 B
Python
26 lines
674 B
Python
import os
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils import setup
|
|
|
|
long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
|
|
|
|
setup(
|
|
name="iso8601",
|
|
version="0.1.11",
|
|
description=long_description.split("\n")[0],
|
|
long_description=long_description,
|
|
author="Michael Twomey",
|
|
author_email="micktwomey+iso8601@gmail.com",
|
|
url="https://bitbucket.org/micktwomey/pyiso8601",
|
|
packages=["iso8601"],
|
|
license="MIT",
|
|
classifiers=[
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 2",
|
|
"Programming Language :: Python :: 3",
|
|
],
|
|
)
|