-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.15 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.15 KB
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
from setuptools import setup, os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='PyBabel-json',
version='0.2.0',
description='PyBabel json gettext strings extractor',
author='Anton Bykov aka Tigra San',
author_email='tigrawap@gmail.com',
long_description=read('README.rst'),
packages=['pybabel_json'],
url="https://github.com/tigrawap/pybabel-json",
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.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'babel',
],
include_package_data=True,
entry_points = """
[babel.extractors]
json = pybabel_json.extractor:extract_json
""",
)