forked from remram44/pybabel-godot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (35 loc) · 1.31 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='Babel-Godot-4',
version='2.0',
description='Plugin for Babel to support Godot scene (.tscn) and resource (.tres) files.',
author='Remi Rampin',
author_email='[email protected]',
maintainer='Holly',
maintainer_email='[email protected]',
license='BSD',
url='https://github.com/h0lley/pybabel-godot',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
py_modules=['babel_godot'],
entry_points="""
[babel.extractors]
godot_scene = babel_godot:extract_godot_scene
godot_resource = babel_godot:extract_godot_resource
"""
)