Fix lack of description and version meta files
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
import argparse
|
||||
import os
|
||||
|
||||
from pkg_resources import resource_string
|
||||
|
||||
|
||||
def file(file):
|
||||
return open(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, file)).read()
|
||||
return resource_string('smnp.meta', file).decode("utf-8")
|
||||
|
||||
|
||||
|
||||
class CliParser(object):
|
||||
|
||||
1
smnp/meta/__description__.txt
Normal file
1
smnp/meta/__description__.txt
Normal file
@@ -0,0 +1 @@
|
||||
Simple Music Notation Processor is a command line tool enabling you to do some music stuff using custom domain-specific language.
|
||||
0
smnp/meta/__init__.py
Normal file
0
smnp/meta/__init__.py
Normal file
1
smnp/meta/__version__.txt
Normal file
1
smnp/meta/__version__.txt
Normal file
@@ -0,0 +1 @@
|
||||
0.1
|
||||
Reference in New Issue
Block a user