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_.
88
99.. _rtrlib : https://github.com/rtrlib/rtrlib
1010
11- **WARNING: Early version api may change without notice. **
12-
1311Sphinx docs can be found in the docs directory and build with ``make html ``.
1412
1513for usage examples see the tools directory
Original file line number Diff line number Diff line change 33
44from setuptools import setup
55
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 ()
614
715setup (
816 name = 'rtrlib' ,
917 version = '0.1' ,
1018 description = 'rtrlib binding' ,
19+ long_description = long_description ,
1120 author = 'Marcel Röthke' ,
12211322 url = 'https://github.com/mroethke/rtrlib-python' ,
1625 license = 'MIT' ,
1726 zip_safe = False ,
1827 classifiers = (
19- 'Development Status :: 3 - Alpha'
28+ 'Development Status :: 4 - Beta' ,
2029 'Intended Audience :: Developers' ,
21- 'License :: OSI Approved :: MIT License'
30+ 'License :: OSI Approved :: MIT License' ,
2231 'Natural Language :: English' ,
2332 'Programming Language :: Python' ,
2433 'Programming Language :: Python :: 2.7' ,
You can’t perform that action at this time.
0 commit comments