-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 921 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
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
"""
installer for Ren'Py Visual Runtime Editor
the old versions of pip installed packages are required for python2.7 support,
which Ren'py uses.
"""
from setuptools import setup, find_packages
from setuptools.command.install import install as InstallCommand
from pip import main as pip_main
class Install(InstallCommand):
""" Customized setuptools install command which uses pip. """
def run(self, *args, **kwargs):
pip_main(['install', '.'])
InstallCommand.run(self, *args, **kwargs)
setup(
name='RVRE',
version='1.0',
description='Ren\'Py Visual Runtime Editor',
author='Arjay Ceekay',
author_email='[email protected]',
cmdclass={
'install': Install,
},
packages=find_packages(),
install_requires=[
'pyperclip',
'pyspellchecker==0.5.6',
'pygments==2.5.2',
'gitpython==2.1.11'
]
)