-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.06 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="jupytex",
version="0.0.3",
author="Angus Hollands",
author_email="[email protected]",
description="Jupyter execution of TeX code environments.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/agoose77/jupytex",
packages=setuptools.find_packages(),
package_data={
'jupytex.data': ['*', '.*']
},
entry_points={'console_scripts': [
'jupytex=jupytex.__main__:main',
],
},
install_requires=['colorama', 'jupyter_client', 'jupyter', 'importlib_resources'],
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Framework :: Jupyter",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: LaTeX"
],
)