ed9d2f21
Miguel Barão
Reorganized proje...
|
1
2
3
|
from setuptools import setup, find_packages
from aprendizations import (__author__, __license__,
|
5d169e97
Miguel Barão
fixed minimum pyt...
|
4
|
APP_NAME, APP_VERSION, APP_DESCRIPTION)
|
ed9d2f21
Miguel Barão
Reorganized proje...
|
5
6
7
8
9
10
11
12
13
14
15
16
17
|
with open("README.md", "r") as f:
long_description = f.read()
setup(
name=APP_NAME,
version=APP_VERSION,
author=__author__,
author_email="mjsb@uevora.pt",
license=__license__,
description=APP_DESCRIPTION.split('\n')[0],
long_description=APP_DESCRIPTION,
long_description_content_type="text/markdown",
|
cef07753
Miguel Barão
version bump to 2...
|
18
|
url="https://git.xdi.uevora.pt/mjsb/aprendizations.git",
|
ed9d2f21
Miguel Barão
Reorganized proje...
|
19
20
|
packages=find_packages(),
include_package_data=True, # install files from MANIFEST.in
|
fc533376
Miguel Barão
Fix pylint warnin...
|
21
|
python_requires='>=3.8.*',
|
ed9d2f21
Miguel Barão
Reorganized proje...
|
22
|
install_requires=[
|
289991dc
Miguel Barão
- several fixes, ...
|
23
|
'tornado>=6.0',
|
1e8f0810
Miguel Barão
update setup.py a...
|
24
|
'mistune',
|
289991dc
Miguel Barão
- several fixes, ...
|
25
26
|
'pyyaml>=5.1',
'pygments',
|
443a1eea
Miguel Barão
Update to latest ...
|
27
|
'sqlalchemy>=1.4',
|
289991dc
Miguel Barão
- several fixes, ...
|
28
29
|
'bcrypt>=3.1',
'networkx>=2.4'
|
ed9d2f21
Miguel Barão
Reorganized proje...
|
30
31
32
|
],
entry_points={
'console_scripts': [
|
1f734486
Miguel Barão
split serve.py in...
|
33
|
'aprendizations = aprendizations.main:main',
|
ed9d2f21
Miguel Barão
Reorganized proje...
|
34
|
'initdb-aprendizations = aprendizations.initdb:main',
|
ed9d2f21
Miguel Barão
Reorganized proje...
|
35
36
37
38
39
40
41
42
43
44
45
|
# 'redirect = aprendizations.redirect:main',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
|