-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·28 lines (23 loc) · 899 Bytes
/
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
#! /usr/bin/python3
from distutils.core import setup
classifiers = [ 'Development Status :: 5 - Production/Stable'
, 'Intended Audience :: Science/Research'
, 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)'
, 'Operating System :: MacOS :: MacOS X'
, 'Operating System :: POSIX :: Linux'
, 'Operating System :: Unix'
]
setup(name='CrossTex',
version='0.9.dev',
author='Kai Mast (maintainer)',
author_email='[email protected]',
packages=['crosstex'
,'crosstex.style'
],
scripts=['bin/crosstex'],
url='https://github.com/kaimast/crosstex',
license='GPLv2',
description='CrossTeX is a bibliography management tool',
classifiers=classifiers,
requires=['ply', 'argparse', 'importlib']
)