-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
51 lines (48 loc) · 1.49 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
from os.path import abspath, dirname, join
from setuptools import setup
# Read the README markdown data from README.md
with open(abspath(join(dirname(__file__), 'README.md')), 'rb') as readmeFile:
__readme__ = readmeFile.read().decode('utf-8')
# Read the version number from version.py
with open(abspath(join(dirname(__file__), 'conan_ue4cli', 'version.py'))) as versionFile:
__version__ = versionFile.read().strip().replace('__version__ = ', '').replace("'", '')
setup(
name='conan-ue4cli',
version=__version__,
description='Integrate third-party libraries into the Unreal Engine with Conan',
long_description=__readme__,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Build Tools',
'Environment :: Console'
],
keywords='epic unreal engine',
url='http://github.com/adamrehn/conan-ue4cli',
author='Adam Rehn',
author_email='[email protected]',
license='MIT',
packages=['conan_ue4cli', 'conan_ue4cli.commands', 'conan_ue4cli.common'],
zip_safe=False,
python_requires = '>=3.5',
install_requires = [
'conan>=1.7.4',
'setuptools',
'ue4cli>=0.0.49',
'wheel'
],
package_data = {
'conan_ue4cli': [
'data/*/*.py',
'data/*/*/*.py',
'data/*/*/*/*.py',
'data/*/*/*.cs'
]
},
entry_points = {
'ue4cli.plugins': ['conan=conan_ue4cli:__PLUGIN_DESCRIPTOR__']
}
)