From b814fd152bedefbea3bee66adc2ef4ac1321bad0 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 4 Jul 2015 20:42:41 +0100 Subject: [PATCH] empty README and setup.py --- .gitignore | 5 +++++ README.rst | 0 setup.py | 35 +++++++++++++++++++++++++++++++++++ steam/__init__.py | 2 ++ 4 files changed, 42 insertions(+) create mode 100644 .gitignore create mode 100644 README.rst create mode 100644 setup.py create mode 100644 steam/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..801c393 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +dist +*.egg-info +*.pyc +.coverage +*.swp diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..601b725 --- /dev/null +++ b/setup.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python + +from setuptools import setup +from codecs import open +from os import path + +from steam import __version__ + +here = path.abspath(path.dirname(__file__)) +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: + long_description = f.read() + +setup( + name='steam', + version=__version__, + description='Module for interacting with various Steam features', + long_description=long_description, + url='https://github.com/ValvePython/steam', + author='Rossen Georgiev', + author_email='hello@rgp.io', + license='MIT', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Natural Language :: English', + 'Operating System :: OS Independent', + ], + keywords='valve steam api', + packages=['steam'], + install_requires=[ + ], + zip_safe=True, +) diff --git a/steam/__init__.py b/steam/__init__.py new file mode 100644 index 0000000..daa1a00 --- /dev/null +++ b/steam/__init__.py @@ -0,0 +1,2 @@ +__version__ = "0.1" +__author__ = "Rossen Georgiev"