Browse Source

empty README and setup.py

pull/1/merge
Rossen Georgiev 10 years ago
parent
commit
b814fd152b
  1. 5
      .gitignore
  2. 0
      README.rst
  3. 35
      setup.py
  4. 2
      steam/__init__.py

5
.gitignore

@ -0,0 +1,5 @@
dist
*.egg-info
*.pyc
.coverage
*.swp

0
README.rst

35
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='[email protected]',
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,
)

2
steam/__init__.py

@ -0,0 +1,2 @@
__version__ = "0.1"
__author__ = "Rossen Georgiev"
Loading…
Cancel
Save