-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 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
from distutils.core import setup
setup(
name = 'Disco_db',
packages = ['Disco_db'],
version = '1.1',
license='gpl-3.0',
description = 'Disco is minimalist password encoded database system made in python, that emphasizes simplicity and efficiency',
author = 'argvsc47',
author_email = '',
url = 'https://github.com/argvsc47/Disco_db',
download_url = 'https://github.com/argvsc47/Disco_db/archive/refs/tags/v1.1.tar.gz',
keywords = ['Disco', 'Database', 'light', 'secure'],
install_requires=[
'cryptography',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Database',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)