|
1 | | -from setuptools import setup, find_packages |
2 | | -import codecs |
3 | | -import os |
| 1 | +from setuptools import setup |
4 | 2 |
|
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" |
8 | 3 |
|
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