-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.4 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
from type2nc import __version__
setuptools.setup(
name="type2nc",
version=__version__,
author="drunsinn et al.",
license='MIT',
author_email="[email protected]",
description="convert truetype fonts to klartext nc-code",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/drunsinn/type2nc",
packages=setuptools.find_packages(exclude=['tests',
'tests.*']),
package_data={'type2nc': ['templates/demo_pgm_template_cycle.H',
'templates/demo_pgm_template_conventional.H',
'templates/pgm_foot_template.H',
'templates/pgm_head_template.H',
'locales/en/LC_MESSAGES/*.mo',
'locales/de/LC_MESSAGES/*.mo']},
keywords="cnc klartext font freetype",
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['numpy>=1.6.2',
'scipy>=0.19.0',
'freetype-py>=1.1',
'argparse>=1.4.0',
'Hershey-Fonts>=2.1.0'],
scripts=['type2nc/type2nc.py'],
)