Skip to content

Commit ab8c07f

Browse files
committed
fix pypi installation
1 parent 023d7c3 commit ab8c07f

5 files changed

Lines changed: 9 additions & 8 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include python *

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
Dynamic Window Approach
22
===================================
3-
Under development.
43

54
### License
65
MIT License.

python/dwa.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# distutils: sources = ./src/dwa.c
1+
# distutils: sources = src/dwa.c
22
# distutils: include_dirs = src
33

44
from libc.stdlib cimport malloc, free

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/usr/bin/env python3
22

33
import os
4-
from setuptools import setup
5-
from distutils.extension import Extension
4+
from setuptools import setup, Extension
65
from Cython.Build import cythonize
76

87
directory = os.path.abspath(os.path.dirname(__file__))
@@ -11,17 +10,17 @@
1110

1211
setup(
1312
name='dynamic-window-approach',
14-
description='Dynamic Window Approach algorithm written in C wiht Python Bindings',
15-
version='1.0.0',
13+
description='Dynamic Window Approach algorithm written in C with Python Bindings',
14+
version='1.0.1',
1615
author='Göktuğ Karakaşlı',
1716
author_email='karakasligk@gmail.com',
1817
license='MIT',
1918
long_description=long_description,
2019
long_description_content_type='text/markdown',
21-
ext_modules = cythonize([Extension("dwa", ["./python/dwa.pyx"])]),
20+
ext_modules = cythonize([Extension("dwa", ["python/dwa.pyx"])]),
2221
url='https://github.com/goktug97/DynamicWindowApproach',
2322
download_url=(
24-
'https://github.com/goktug97/DynamicWindowApproach/archive/v1.0.0.tar.gz'),
23+
'https://github.com/goktug97/DynamicWindowApproach/archive/v1.0.1.tar.gz'),
2524
classifiers=[
2625
"Programming Language :: Python :: 3",
2726
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)