-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.3 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.3 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'LICENSE'), encoding='utf-8') as f:
license_text = f.read()
setup(
name='rpcstools',
version='0.1.2',
description='Simple tool for rpcs3 that can update games and the emulator itself.',
long_description=long_description,
author='Rodrigo Junger',
author_email='rodrigojunger@id.uff.br',
url='https://github.com/rodjun/rpcstools',
download_url="https://github.com/rodjun/rpcstools/archive/0.1.2.tar.gz",
license=license_text,
python_requires='>=3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='rpcs3 emulator ps3 sfo development',
install_requires=['requests',
'pyyaml',
'tqdm',
'urllib3'],
packages=find_packages(exclude=('tests', 'docs')),
entry_points={
'console_scripts': ['update-rpcs3-games=rpcstools.rpcstools:update_games']
}
)