-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 787 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 787 Bytes
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
import pathlib
from setuptools import setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name="ReallySimpleDB",
version="1.2",
description="A tool for easily manage databases with Python",
long_description=long_description,
long_description_content_type="text/markdown",
author="tharindu.dev",
author_email="tharindu.nm@yahoo.com",
url="https://github.com/truethari/ReallySimpleDB",
keywords="database sqlite python-database python-sqlite database-management",
project_urls={
"Bug Tracker": "https://github.com/truethari/ReallySimpleDB/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
],
packages=['ReallySimpleDB'],
)