Browse Source
pull/6/head9897c59
- WebAPI: fix set concatenation in python34aa9200
- version bump v0.5.18fd391c
- fix setup.py install fail when missing dependeciescbde28a
- WebAPI: fix regression w/ required param checkf5d6bc8
- WebAPI: moved doc() to __doc__; doc() now prints
4 changed files with 28 additions and 12 deletions
@ -4,11 +4,12 @@ from setuptools import setup |
|||||
from codecs import open |
from codecs import open |
||||
from os import path |
from os import path |
||||
|
|
||||
from steam import __version__ |
|
||||
|
|
||||
here = path.abspath(path.dirname(__file__)) |
here = path.abspath(path.dirname(__file__)) |
||||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
||||
long_description = f.read() |
long_description = f.read() |
||||
|
with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f: |
||||
|
__version__ = f.readline().split('"')[1] |
||||
|
|
||||
setup( |
setup( |
||||
name='steam', |
name='steam', |
||||
@ -16,7 +17,7 @@ setup( |
|||||
description='Module for interacting with various Steam features', |
description='Module for interacting with various Steam features', |
||||
long_description=long_description, |
long_description=long_description, |
||||
url='https://github.com/ValvePython/steam', |
url='https://github.com/ValvePython/steam', |
||||
author='Rossen Georgiev', |
author="Rossen Georgiev", |
||||
author_email='[email protected]', |
author_email='[email protected]', |
||||
license='MIT', |
license='MIT', |
||||
classifiers=[ |
classifiers=[ |
||||
|
@ -1,5 +1,5 @@ |
|||||
__version__ = "0.5" |
__version__ = "0.5.1" |
||||
__author__ = "Rossen Georgiev" |
__author__ = "Rossen Georgiev" |
||||
|
|
||||
from .steamid import SteamID |
from steam.steamid import SteamID |
||||
from .webapi import WebAPI |
from steam.webapi import WebAPI |
||||
|
Loading…
Reference in new issue