-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
48 lines (43 loc) · 1.44 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[metadata]
name = djcompiler
version = 0.0.5
url = https://github.com/abdoohossamm/djcompiler
author = Abdalrahman Hossam Eldin Mohamed
author_email = abdoohossamm@outlook.com
description = django compiler that compiles django project to a C language using Cython project which gives more performance and more security since the original code is hidden.
long_description = file: README.rst
license = BSD-3-Clause
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Cython
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Source = https://github.com/abdoohossamm/djcompiler
Tracker = https://github.com/abdoohossamm/djcompiler/issues
[options]
python_requires = >=3.8
packages = find:
include_package_data = True
zip_safe = false
install_requires =
Cython >= 0.29.34
exclude = tests,testproject
[options.entry_points]
console_scripts =
djcompiler = djcompiler.management:execute_from_command_line
[flake8]
ignore = E305
exclude = build,.git,.tox,./tests/,./testproject/
max-line-length = 119
[isort]
profile = black
default_section = THIRDPARTY
known_first_party = djcompiler