-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (43 loc) · 1.25 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
from setuptools import setup, find_packages
description = (
'Sphinx extension to view Translation Assistant file'
)
with open('README.rst', 'r', encoding='utf8') as f:
long_description = f.read()
requires = [
'Sphinx>=0.6',
]
keywords = [
'sphinx',
'sphinxcontrib',
'translation assistant',
]
setup(
name='sphinxcontrib-translation-assistant',
version='0.2.1',
url='https://github.com/julot/sphinxcontrib-translation-assistant',
license='MIT',
author='Andy Yulius',
author_email='andy.julot@gmail.com',
description=description,
long_description=long_description,
keywords=' '.join(keywords),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Framework :: Sphinx',
'Framework :: Sphinx :: Extension',
],
platforms='any',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
namespace_packages=['sphinxcontrib'],
tests_require=['pytest'],
setup_requires=['pytest-runner'],
)