Blame view

setup.py 1.23 KB
ed0097b4   Miguel Barão   removes redirect ...
1
2
3
from setuptools import setup, find_packages

from perguntations import (__author__, __license__,
aab6a036   Miguel Barão   minor changes
4
                           APP_NAME, APP_VERSION, APP_DESCRIPTION)
4b703498   Miguel Barão   Major reorganizat...
5
6
7
8
9

with open("README.md", "r") as f:
    long_description = f.read()

setup(
f0d08f5c   Miguel Barão   minor
10
    name=APP_NAME,
4b703498   Miguel Barão   Major reorganizat...
11
12
13
14
15
16
    version=APP_VERSION,
    author=__author__,
    author_email="mjsb@uevora.pt",
    license=__license__,
    description=APP_DESCRIPTION.split('\n')[0],
    long_description=APP_DESCRIPTION,
f0d08f5c   Miguel Barão   minor
17
    long_description_content_type="text/markdown",
4b703498   Miguel Barão   Major reorganizat...
18
19
20
    url="https:USERNAME//bitbucket.org/USERNAME/perguntations.git",
    packages=find_packages(),
    include_package_data=True,   # install files from MANIFEST.in
f0d08f5c   Miguel Barão   minor
21
22
    python_requires='>=3.7.*',
    install_requires=[
4b703498   Miguel Barão   Major reorganizat...
23
24
        'tornado', 'mistune', 'pyyaml', 'pygments', 'sqlalchemy', 'bcrypt'],
    entry_points={
f0d08f5c   Miguel Barão   minor
25
        'console_scripts': [
4b703498   Miguel Barão   Major reorganizat...
26
            'perguntations = perguntations.serve:main',
cc91e4c0   Miguel Barão   Squashed commit o...
27
            'initdb = perguntations.initdb:main',
ffb53a93   Miguel Barão   First version tha...
28
        ]
a566a5d6   Miguel Barão   refactoring. spli...
29
30
    },
    classifiers=[
fbe9b8d2   Miguel Barão   add dependency sc...
31
        'Development Status :: 4 - Beta',
cc91e4c0   Miguel Barão   Squashed commit o...
32
33
        'Environment :: Console',
        'Intended Audience :: Education',
a566a5d6   Miguel Barão   refactoring. spli...
34
        'Programming Language :: Python :: 3',
4b703498   Miguel Barão   Major reorganizat...
35
36
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
a566a5d6   Miguel Barão   refactoring. spli...
37
    ],
4b703498   Miguel Barão   Major reorganizat...
38
)