Skip to content

Commit

Permalink
Set initial version numbe
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewryanscott committed Nov 8, 2016
1 parent 19dd067 commit 340bd4f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

0.1.0 (under development)
-------------------------
0.1.0-1.9.2.0 (under development)
---------------------------------

* Initial release.
29 changes: 23 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,37 @@
"""
Wrapper for the SunVox DLL.
"""
"""Wrapper for the SunVox DLL."""

import io
import os
import re
from setuptools import find_packages, setup
import sys

SETUP_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__)))
sys.path.append(SETUP_DIR)
import sunvox

dependencies = []


def read(*names, **kwargs):
return io.open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get('encoding', 'utf8')
).read()


setup(
name='sunvox-dll-python',
version='0.1.1-1.9.2',
version=sunvox.__version__,
url='https://github.com/metrasynth/sunvox-dll-python',
license='MIT',
author='Matthew Scott',
author_email='matt@11craft.com',
description='Wrapper for the SunVox DLL',
long_description=__doc__,
description=__doc__,
long_description='%s\n%s' % (
re.compile('^.. start-badges.*^.. end-badges', re.M | re.S).sub('', read('README.rst')),
re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))
),
packages=find_packages(exclude=['docs', 'tests']),
package_data={
'sunvox': [
Expand Down
2 changes: 2 additions & 0 deletions sunvox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = '0.1.0-1.9.2.0'

from sunvox.dll import *
from sunvox.slot import *
from sunvox.process import *

0 comments on commit 340bd4f

Please sign in to comment.