-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
34 lines (28 loc) · 817 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
#!/usr/bin/env python
import os
from distutils.core import setup
# The directory containing this file
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, 'README.md')) as f:
README = f.read()
execfile('t5de/version.py')
# noinspection PyUnresolvedReferences
version = __version__
print('Running T5DE patcher setup v%s' % version)
setup(
name='T5DE',
version=version,
description='A modified IMVU client that unlocks useful features.',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/dhkatz/t5de',
packages=['t5de'],
install_requires=[
'autogui', 'requests', 'uncompyle2', 'typing'
],
entry_points={
'console_scripts': [
't5de = t5de.__main__:main'
]
}
)