File tree 4 files changed +28
-7
lines changed
4 files changed +28
-7
lines changed Original file line number Diff line number Diff line change
1
+ v0.8.1, 7 Feb 2015 -- Rewritten for asyncio/aiosc.
2
+
1
3
v0.1dev, 1 Jan 2013 -- Initial release to pypi
Original file line number Diff line number Diff line change
1
+ include LICENSE
2
+ include README.rst
3
+ include CHANGES.txt
4
+ include examples/*.py
File renamed without changes.
Original file line number Diff line number Diff line change 1
- from distutils .core import setup
1
+ #! /usr/bin/env python3
2
+
3
+ from setuptools import setup
4
+
5
+ with open ('README.rst' ) as file :
6
+ long_description = file .read ()
2
7
3
8
setup (
4
9
name = 'pymonome' ,
5
- version = '0.2.3' ,
6
- py_modules = ['monome' ],
7
10
author = 'Artem Popov' ,
8
- url = 'http://pypi.python.org/pypi/pymonome' ,
11
+
12
+ url = 'https://github.com/artfwo/pymonome' ,
9
13
description = 'a monome serialosc client in python' ,
10
- long_description = open ('README' ).read (),
14
+ long_description = long_description ,
15
+ version = '0.8.1' ,
16
+ py_modules = ['monome' ],
17
+ include_package_data = True ,
11
18
install_requires = [
12
- "pyOSC >= 0.3" ,
13
- "pybonjour >= 1.1.1" ,
19
+ 'aiosc'
20
+ ],
21
+ classifiers = [
22
+ 'Development Status :: 4 - Beta' ,
23
+ 'Intended Audience :: Developers' ,
24
+ 'License :: OSI Approved :: MIT License' ,
25
+ 'Programming Language :: Python :: 3' ,
26
+ 'Topic :: Multimedia :: Sound/Audio' ,
27
+ 'Topic :: Software Development :: Libraries' ,
14
28
],
29
+ license = 'MIT'
15
30
)
You can’t perform that action at this time.
0 commit comments