source: vendor/current/third_party/pyiso8601/setup.py

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 674 bytes
Line 
1import os
2
3try:
4 from setuptools import setup
5except ImportError:
6 from distutils import setup
7
8long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
9
10setup(
11 name="iso8601",
12 version="0.1.11",
13 description=long_description.split("\n")[0],
14 long_description=long_description,
15 author="Michael Twomey",
16 author_email="micktwomey+iso8601@gmail.com",
17 url="https://bitbucket.org/micktwomey/pyiso8601",
18 packages=["iso8601"],
19 license="MIT",
20 classifiers=[
21 "License :: OSI Approved :: MIT License",
22 "Programming Language :: Python :: 2",
23 "Programming Language :: Python :: 3",
24 ],
25)
Note: See TracBrowser for help on using the repository browser.