-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 1.01 KB
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md", "r") as readme:
readme_contents = readme.read()
setup(
name='kingorm',
version='1.0.0',
description='King is an ORM for Python and SQLite. It is designed to be a lightweight solution for simple programs, where objects have to be stored. A programmer just needs to define fields in the model classes and that\'s it!',
long_description=readme_contents,
long_description_content_type="text/markdown",
url='https://github.com/king-orm/orm/',
author='Anatoly Frolov',
author_email='contact@anafro.ru',
license='MIT',
packages=find_packages(),
install_requires=[],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
'Programming Language :: SQL',
"Operating System :: OS Independent",
],
)