-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.29 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.29 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
43
44
45
46
47
from setuptools import setup
from vitex import __version__
import sys
if sys.version_info < (3, 6):
print('vitex requires python>=3.6.')
exit(1)
with open('requirements.txt') as f:
requirements = f.readlines()
with open('README.md') as f:
desc = f.read()
setup(
name='vitex',
version=__version__,
description='An unholy conglomeration of vim, evince, and friends for writing LaTeX',
long_description=desc,
long_description_content_type='text/markdown',
url='https://github.com/cfangmeier/vitex',
author='Caleb Fangmeier',
author_email='caleb@fangmeier.tech',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
keywords='vim LaTeX Gtk',
packages=['vitex'],
package_dir={'vitex': 'vitex'},
package_data={
'vitex': ['init.vim.template'],
},
install_requires=requirements,
# Next 2 lines allow for `python setup.py install` type installation
# include_package_data=True,
scripts=[
'scripts/vitex',
],
)