setup.read()   A
last analyzed

Complexity

Conditions 2

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 3
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
# !/usr/bin/env python
2
# from distutils.core import setup
3
from io import open
4
5
from setuptools import setup
6
7
8
def read(filename):
9
    with open(filename, encoding='utf-8') as file:
10
        return file.read()
11
12
13
setup(
14
  name='Loglan-DB',
15
  packages=['loglan_db'],
16
  package_data={'loglan_db': ['*'], },
17
  include_package_data=True,
18
  version='0.1.21',
19
  license='MIT',
20
  description="Loglan Dictionary Database Model for SQLAlchemy",
21
  long_description=read("README.md"),
22
  long_description_content_type="text/markdown",
23
  author='torrua',
24
  author_email='[email protected]',
25
  url='https://github.com/torrua/loglan_db',
26
  download_url='https://github.com/torrua/loglan_db/archive/v0.1.21.tar.gz',
27
  keywords=['Loglan', 'Dictionary', 'Database', 'Model', 'LOD'],
28
  install_requires=[
29
          'flask', 'sqlalchemy', 'flask_sqlalchemy', 'psycopg2',
30
  ],
31
  classifiers=[
32
    'Development Status :: 5 - Production/Stable',  # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
33
    'Intended Audience :: Developers',
34
    'Intended Audience :: Science/Research',
35
    'Framework :: Flask',
36
    'Topic :: Database',
37
    'License :: OSI Approved :: MIT License',
38
    'Programming Language :: Python :: 3.8',
39
    'Programming Language :: Python :: 3.9',
40
    'Programming Language :: Python :: 3.10',
41
  ],
42
  python_requires='>=3.8',
43
)
44