-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.34 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
31
32
33
34
35
36
37
38
39
# setup.py
from setuptools import setup, find_packages
setup(
name="Effortless",
version="1.3.1",
packages=find_packages(),
description="Databases should be Effortless.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://bboonstra.dev/effortless/",
author="Ben Boonstra",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Natural Language :: English",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
python_requires=">=3.9",
install_requires=[
"cryptography>=41.0.0",
],
keywords="database, effortless, simple storage, beginner, easy, db",
project_urls={
"Bug Tracker": "https://github.com/bboonstra/Effortless/issues",
"Documentation": "https://bboonstra.dev/effortless/",
"Source Code": "https://github.com/bboonstra/Effortless",
},
include_package_data=True,
)