Skip to content

Commit

Permalink
modified the name
Browse files Browse the repository at this point in the history
  • Loading branch information
PeiShang committed Apr 8, 2018
1 parent 2f70522 commit 893e04c
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
Binary file added .setup.py.un~
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
version=1.0,
author="PeiShang",
author_email="[email protected]",
url="https://github.com/PeiShang/opendota",
url="https://github.com/PeiShang/opendota2",
description="The OpenDota web API in Python",
license="GPL",
keywords="dota2 dota api dota2api opendota",
Expand Down
36 changes: 36 additions & 0 deletions setup.py~
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""Setup script"""
from setuptools import setup

setup(
name="opendota2",
version=1.0,
author="PeiShang",
author_email="[email protected]",
url="https://github.com/PeiShang/opendota",
description="The OpenDota web API in Python",
license="GPL",
keywords="dota2 dota api dota2api opendota",
packages=['opendota', 'opendota.src', 'opendota.ref'],
package_data={'opendota.ref': ['abilities.json',
'heroes.json',
'leaver.json',
'items.json',
'lobbies.json',
'modes.json',
'regions.json']},
install_requires=[],
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
]
)

0 comments on commit 893e04c

Please sign in to comment.