Skip to content

Commit 6ddb555

Browse files
committed
upgraded setuptool
1 parent 1759c12 commit 6ddb555

File tree

3 files changed

+29
-31
lines changed

3 files changed

+29
-31
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ['setuptools>=60']
3+
build-backend = 'setuptools.build_meta'

setup.cfg

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[metadata]
2+
name = filexdb
3+
version = 0.1.0
4+
author = Sam (AcePic Studio)
5+
author_email = biswassamrat903@gmail.com
6+
description = A lightweight local NoSQL database
7+
long_description = file: README.md, LICENSE
8+
long_description_content_type = text/markdown
9+
url = https://github.com/FileXdb/FileXdb-Python
10+
project_urls =
11+
homepage = https://github.com/FileXdb/FileXdb-Python
12+
Repository = https://github.com/FileXdb/FileXdb-Python
13+
Bug Tracker = https://github.com/FileXdb/FileXdb-Python/issues
14+
classifiers =
15+
Programming Language :: Python :: 3
16+
License :: OSI Approved :: MIT License
17+
Operating System :: OS Independent
18+
19+
20+
[options]
21+
packages = find:
22+
python_requires = 3.7 or above
23+

setup.py

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,5 @@
1-
from setuptools import setup, find_packages
2-
import codecs
3-
import os
1+
from setuptools import setup
42

5-
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
6-
VERSION = '1.0.0'
7-
DESCRIPTION = r"A File Based, Local, Simple, NoSQL DataBase"
83

9-
with codecs.open(os.path.join(BASE_DIR, "README.md"), encoding="utf-8") as fh:
10-
long_description = "\n" + fh.read()
11-
12-
# Setting up
13-
setup(
14-
name="filexdb",
15-
version=VERSION,
16-
author="Sam (AcePic Studio)",
17-
author_email="sam@acepicstudio.com",
18-
description=DESCRIPTION,
19-
long_description_content_type="text/markdown",
20-
long_description=long_description,
21-
packages=find_packages(),
22-
install_requires=[],
23-
keywords=['python', 'dev-tool', 'database', 'local database'],
24-
classifiers=[
25-
"Development Status :: 1 - Planning",
26-
"Intended Audience :: Developers",
27-
"Programming Language :: Python :: 3",
28-
"Operating System :: Unix",
29-
"Operating System :: MacOS :: MacOS X",
30-
"Operating System :: Microsoft :: Windows",
31-
]
32-
33-
)
4+
if __name__ == "__main__":
5+
setup()

0 commit comments

Comments
 (0)