-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 900 Bytes
/
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
from distutils.core import setup
setup(
name = 'plato_cqrs',
packages = ['plato_cqrs'],
version = '1.1',
license='GPL-3',
description = 'Simple CQRS implementation',
author = 'Pepe Márquez Doblas',
author_email = '[email protected]',
url = 'https://github.com/IronSenior/PythonCommandQuery',
download_url = 'https://github.com/IronSenior/PythonCommandQuery/archive/refs/tags/1.1.tar.gz',
keywords = ['CQRS', 'COMMAND', 'QUERY'],
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)