diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..77a35db --- /dev/null +++ b/setup.cfg @@ -0,0 +1,28 @@ +[metadata] +name = hslog +version = 1.0.0 +description = Hearthstone Power.log parser +author = Jerome Leclanche +author_email = jerome@leclan.ch +url = https://github.com/HearthSim/python-hslog/ +download_url = https://github.com/HearthSim/python-hslog/tarball/master +classifiers = + Development Status :: 5 - Production/Stable + Intended Audience :: Developers + License :: OSI Approved :: MIT License + Programming Language :: Python + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Topic :: Games/Entertainment + +[options] +packages = find: +install_requires = + aniso8601 + hearthstone + +[bdist_wheel] +universal = 1 diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..dd4e63e --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +from setuptools import setup + + +setup()