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
|
from setuptools import setup
with open("README.rst", "r") as readme:
long_description = readme.read()
setup(
name = "pyRFC3339",
version = "2.0.1",
author = "Kurt Raschke",
author_email = "kurt@kurtraschke.com",
url = "https://github.com/kurtraschke/pyRFC3339",
description = "Generate and parse RFC 3339 timestamps",
long_description = long_description,
keywords = "rfc 3339 timestamp",
license = "MIT",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet"
],
packages = ['pyrfc3339']
)
|