-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (44 loc) · 1.26 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
from setuptools import setup, find_packages
import logging
logger = logging.getLogger(__name__)
version = '0.5.0'
try:
with open('README.md', 'r') as f:
long_desc = f.read()
except:
logger.warning('Could not open README.md. long_description will be set to None.')
long_desc = None
setup(
name = 'latextools',
packages = find_packages(),
version = version,
description = 'A collection of tools for building, rendering, and converting Latex documents',
long_description = long_desc,
long_description_content_type = 'text/markdown',
author = 'Casey Duckering',
#author_email = '',
url = 'https://github.com/cduck/latextools',
download_url = 'https://github.com/cduck/latextools/archive/{}.tar.gz'.format(version),
keywords = ['LaTeX'],
classifiers = [
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Framework :: IPython',
'Framework :: Jupyter',
],
install_requires = [
'fs',
],
extras_require = {
'dev': [
'twine',
],
'svg': [
'drawsvg[raster]~=2.0',
],
'all': [
'drawsvg[raster]~=2.0',
],
},
)