Commit 729aaf0ead8cd34819486d4f047b2a071dc89ca2
1 parent
7ea61a66
Exists in
dev
update setup.py to latest versions of packages
Showing
1 changed file
with
21 additions
and
21 deletions
Show diff stats
setup.py
... | ... | @@ -7,34 +7,34 @@ with open("README.md", "r") as f: |
7 | 7 | long_description = f.read() |
8 | 8 | |
9 | 9 | setup( |
10 | - name=APP_NAME, | |
11 | - version=APP_VERSION, | |
12 | - author=__author__, | |
13 | - author_email="mjsb@uevora.pt", | |
14 | - license=__license__, | |
15 | - description=APP_DESCRIPTION.split('\n')[0], | |
16 | - long_description=APP_DESCRIPTION, | |
17 | - long_description_content_type="text/markdown", | |
18 | - url="https://git.xdi.uevora.pt/mjsb/aprendizations.git", | |
19 | - packages=find_packages(), | |
20 | - include_package_data=True, # install files from MANIFEST.in | |
21 | - python_requires='>=3.9', | |
22 | - install_requires=[ | |
23 | - 'tornado>=6.2', | |
24 | - 'mistune>=3.0.0rc4', | |
10 | + name = APP_NAME, | |
11 | + version = APP_VERSION, | |
12 | + author = __author__, | |
13 | + author_email = "mjsb@uevora.pt", | |
14 | + license = __license__, | |
15 | + description = APP_DESCRIPTION.split('\n')[0], | |
16 | + long_description = APP_DESCRIPTION, | |
17 | + long_description_content_type = "text/markdown", | |
18 | + url = "https://git.xdi.uevora.pt/mjsb/aprendizations.git", | |
19 | + packages = find_packages(), | |
20 | + include_package_data = True, # install files from MANIFEST.in | |
21 | + python_requires = '>=3.11.1', | |
22 | + install_requires = [ | |
23 | + 'tornado>=6.4', | |
24 | + 'mistune>=3.1', | |
25 | 25 | 'pyyaml>=6.0', |
26 | - 'pygments>=2.14', | |
27 | - 'sqlalchemy>=2.0.0', | |
28 | - 'bcrypt>=4.0.1', | |
29 | - 'networkx>=3.0' | |
26 | + 'pygments>=2.19', | |
27 | + 'sqlalchemy>=2.0.37', | |
28 | + 'bcrypt>=4.2.1', | |
29 | + 'networkx>=3.4.2' | |
30 | 30 | ], |
31 | - entry_points={ | |
31 | + entry_points = { | |
32 | 32 | 'console_scripts': [ |
33 | 33 | 'aprendizations = aprendizations.main:main', |
34 | 34 | 'initdb-aprendizations = aprendizations.initdb:main', |
35 | 35 | ] |
36 | 36 | }, |
37 | - classifiers=[ | |
37 | + classifiers = [ | |
38 | 38 | 'Development Status :: 4 - Beta', |
39 | 39 | 'Environment :: Console', |
40 | 40 | 'Intended Audience :: Education', | ... | ... |