File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
1
+ include ffi_build.py
2
+ include rtrlib.cdef
Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ rtrlib-python is a cffi based python binding for rtrlib_.
8
8
9
9
.. _rtrlib : https://github.com/rtrlib/rtrlib
10
10
11
- **WARNING: Early version api may change without notice. **
12
-
13
11
Sphinx docs can be found in the docs directory and build with ``make html ``.
14
12
15
13
for usage examples see the tools directory
Original file line number Diff line number Diff line change 3
3
4
4
from setuptools import setup
5
5
6
+ from codecs import open
7
+ from os import path
8
+
9
+ here = path .abspath (path .dirname (__file__ ))
10
+
11
+
12
+ with open (path .join (here , 'README.rst' ), encoding = 'utf8' ) as f :
13
+ long_description = f .read ()
6
14
7
15
setup (
8
16
name = 'rtrlib' ,
9
17
version = '0.1' ,
10
18
description = 'rtrlib binding' ,
19
+ long_description = long_description ,
11
20
author = 'Marcel Röthke' ,
12
21
13
22
url = 'https://github.com/mroethke/rtrlib-python' ,
16
25
license = 'MIT' ,
17
26
zip_safe = False ,
18
27
classifiers = (
19
- 'Development Status :: 3 - Alpha'
28
+ 'Development Status :: 4 - Beta' ,
20
29
'Intended Audience :: Developers' ,
21
- 'License :: OSI Approved :: MIT License'
30
+ 'License :: OSI Approved :: MIT License' ,
22
31
'Natural Language :: English' ,
23
32
'Programming Language :: Python' ,
24
33
'Programming Language :: Python :: 2.7' ,
You can’t perform that action at this time.
0 commit comments