Skip to content

Commit

Permalink
fix pypi installation
Browse files Browse the repository at this point in the history
  • Loading branch information
goktug97 committed Dec 24, 2019
1 parent 023d7c3 commit ab8c07f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include python *
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
Dynamic Window Approach
===================================
Under development.

### License
MIT License.
2 changes: 1 addition & 1 deletion python/dwa.pyx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# distutils: sources = ./src/dwa.c
# distutils: sources = src/dwa.c
# distutils: include_dirs = src

from libc.stdlib cimport malloc, free
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/usr/bin/env python3

import os
from setuptools import setup
from distutils.extension import Extension
from setuptools import setup, Extension
from Cython.Build import cythonize

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

setup(
name='dynamic-window-approach',
description='Dynamic Window Approach algorithm written in C wiht Python Bindings',
version='1.0.0',
description='Dynamic Window Approach algorithm written in C with Python Bindings',
version='1.0.1',
author='Göktuğ Karakaşlı',
author_email='[email protected]',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
ext_modules = cythonize([Extension("dwa", ["./python/dwa.pyx"])]),
ext_modules = cythonize([Extension("dwa", ["python/dwa.pyx"])]),
url='https://github.com/goktug97/DynamicWindowApproach',
download_url=(
'https://github.com/goktug97/DynamicWindowApproach/archive/v1.0.0.tar.gz'),
'https://github.com/goktug97/DynamicWindowApproach/archive/v1.0.1.tar.gz'),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit ab8c07f

Please sign in to comment.