-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (26 loc) · 807 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='steam-swissapiknife',
version='0.1',
description='A tool to explore the Steam API.',
url='https://github.com/Lagg/steam-swissapiknife',
author='Lagg',
author_email='[email protected]',
license='ISC',
packages=['steamswissapiknife'],
test_suite='nose.collector',
tests_require=['nose'],
keywords=['Steam', 'WebAPI'],
classifiers = [
"License :: OSI Approved :: ISC License (ISCL)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python"
],
entry_points={
'console_scripts': [
'steamswissapiknife = steamswissapiknife.main:main',
],
},
)