-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.23 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.23 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
39
40
41
42
from setuptools import find_packages, setup
setup(
name='latex2plos',
version='1.0.2',
url='https://github.com/petarmaric/latex2plos',
license='BSD',
author='Petar Maric',
author_email='petarmaric@uns.ac.rs',
description='Console app and Python API for automated preparation of your '\
'LaTeX paper for submission in PLOS journals',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Text Processing :: Markup :: LaTeX',
'Topic :: Utilities',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'latex2plos=latex2plos.shell:main',
],
},
install_requires=[
'friendly_name_mixin~=1.0',
'simple_plugins~=1.0',
'wand~=0.5.0',
],
extras_require={
'dev': [
'pylint~=1.9',
],
},
)