|
10 | 10 | long_description = '\n' + fh.read() |
11 | 11 |
|
12 | 12 |
|
13 | | -import c4dynamics |
| 13 | +# import c4dynamics |
14 | 14 |
|
15 | | -VERSION = c4dynamics.__version__ |
| 15 | +# VERSION = c4dynamics.__version__ |
| 16 | +VERSION = "2.3.2" # change also in __init__.py and pyproject.toml |
16 | 17 | print(VERSION) |
17 | 18 | print('did u remember to upgrade the version number??') |
18 | 19 |
|
19 | | -DESCRIPTION = 'The framework for algorithms engineering with Python.' |
20 | | -LONG_DESCRIPTION = 'Tsipor (bird) Dynamics (c4dynamics) is the open-source framework of algorithms development for objects in space and time.' |
| 20 | +DESCRIPTION = 'Python framework for state-space modeling.' |
| 21 | +LONG_DESCRIPTION = 'Tsipor (bird) Dynamics (c4dynamics) is The Python framework for state-space modeling and algorithm development.' |
21 | 22 |
|
22 | 23 | required_packages = [] |
23 | 24 |
|
24 | | -with open(os.path.join(here, 'requirements.txt'), 'r') as file: |
25 | | - for line in file: |
26 | | - line = line.strip() # Remove leading and trailing whitespaces |
27 | | - if not line.startswith('#'): |
28 | | - required_packages.append(line) |
| 25 | +# with open(os.path.join(here, 'requirements.txt'), 'r') as file: |
| 26 | + # for line in file: |
| 27 | + # line = line.strip() # Remove leading and trailing whitespaces |
| 28 | + # if not line.startswith('#'): |
| 29 | + # required_packages.append(line) |
29 | 30 |
|
30 | 31 |
|
31 | 32 | # Now, lines_to_append contains all lines from the file that don't start with a hash |
|
52 | 53 | # , exclude_package_data = {package: ['src/main/resources/*.*']} |
53 | 54 | , install_requires = required_packages |
54 | 55 | , python_requires = ">=3.8,<3.13" # update also in run-tests.yml, readme.md, pyproject.yaml, setup_guide.ipynb |
55 | | - , keywords = ['python', 'dynamics', 'physics' |
56 | | - , 'algorithms', 'computer vision' |
57 | | - , 'navigation', 'guidance', 'slam' |
58 | | - , 'vslam', 'image processing', 'signal processing', 'control'] |
59 | | - , classifiers = ['Development Status :: 5 - Production/Stable' |
60 | | - , 'Intended Audience :: Developers' |
61 | | - , 'Programming Language :: Python :: 3' |
62 | | - , 'Operating System :: Unix' |
63 | | - , 'Operating System :: MacOS :: MacOS X' |
64 | | - , 'Operating System :: Microsoft :: Windows'] |
65 | 56 | ) |
66 | 57 |
|
67 | 58 |
|
|
0 commit comments