|
1 | 1 | #!/usr/bin/env python3 |
2 | 2 |
|
3 | 3 | import os |
4 | | -from setuptools import setup |
5 | | -from distutils.extension import Extension |
| 4 | +from setuptools import setup, Extension |
6 | 5 | from Cython.Build import cythonize |
7 | 6 |
|
8 | 7 | directory = os.path.abspath(os.path.dirname(__file__)) |
|
11 | 10 |
|
12 | 11 | setup( |
13 | 12 | 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', |
16 | 15 | author='Göktuğ Karakaşlı', |
17 | 16 | author_email='karakasligk@gmail.com', |
18 | 17 | license='MIT', |
19 | 18 | long_description=long_description, |
20 | 19 | long_description_content_type='text/markdown', |
21 | | - ext_modules = cythonize([Extension("dwa", ["./python/dwa.pyx"])]), |
| 20 | + ext_modules = cythonize([Extension("dwa", ["python/dwa.pyx"])]), |
22 | 21 | url='https://github.com/goktug97/DynamicWindowApproach', |
23 | 22 | 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'), |
25 | 24 | classifiers=[ |
26 | 25 | "Programming Language :: Python :: 3", |
27 | 26 | "License :: OSI Approved :: MIT License", |
|
0 commit comments