Skip to content

Commit 907b917

Browse files
syntacticsyntactic
authored andcommitted
I've added an encoding header and setup file. Thanks to Thomas Sauvage for finding the encoding issue and also for the setup file.
1 parent 680ad42 commit 907b917

File tree

5 files changed

+16
-0
lines changed

5 files changed

+16
-0
lines changed

DeterministicGenerator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
# @copyright: MIT License
23
# Copyright (c) 2018 syntactic (Pastèque Ho)
34
# Permission is hereby granted, free of charge, to any person obtaining a copy

JSGFGrammar.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
# @copyright: MIT License
23
# Copyright (c) 2018 syntactic (Pastèque Ho)
34
# Permission is hereby granted, free of charge, to any person obtaining a copy

JSGFParser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
# @copyright: MIT License
23
# Copyright (c) 2018 syntactic (Pastèque Ho)
34
# Permission is hereby granted, free of charge, to any person obtaining a copy

ProbabilisticGenerator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
#/usr/bin/python
23

34
# @copyright: MIT License

setup.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# -*- coding: utf-8 -*-
2+
from setuptools import setup, find_packages
3+
4+
setup(
5+
6+
name='JSGFTools',
7+
version='1',
8+
url='https://github.com/syntactic/JSGFTools',
9+
10+
license='MIT'
11+
12+
)

0 commit comments

Comments
 (0)