-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
21 lines (20 loc) · 822 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='sane_tikz',
version='0.1',
description='Python to TikZ transpiler',
long_description=open('tutorial.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='http://github.com/negrinho/sane_tikz',
author='Renato Negrinho',
author_email='renato.negrinho@gmail.com',
license='MIT',
packages=find_packages(include=["sane_tikz*"]),
python_requires='>=3.6',
install_requires=["numpy"],
classifiers=[
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
"Topic :: Scientific/Engineering :: Visualization"
])