-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
37 lines (32 loc) · 1.1 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
# -*- coding: utf-8 -*-
import io
from setuptools import setup
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(
name='Babel-Godot',
version='1.2',
description='Plugin for Babel to support Godot scene files (.tscn)',
author='Remi Rampin',
author_email='[email protected]',
long_description=description,
license='BSD',
url='https://github.com/remram44/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.7',
'Programming Language :: Python :: 3',
'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
"""
)