Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 73f93de

Browse files
committed
prepeare release
1 parent e6774a3 commit 73f93de

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include ffi_build.py
2+
include rtrlib.cdef

README.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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-
1311
Sphinx docs can be found in the docs directory and build with ``make html``.
1412

1513
for usage examples see the tools directory

setup.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@
33

44
from 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

715
setup(
816
name='rtrlib',
917
version='0.1',
1018
description='rtrlib binding',
19+
long_description=long_description,
1120
author='Marcel Röthke',
1221
author_email='[email protected]',
1322
url='https://github.com/mroethke/rtrlib-python',
@@ -16,9 +25,9 @@
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',

0 commit comments

Comments
 (0)