-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 811 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
26
27
28
29
30
31
from setuptools import setup
setup(
name='allsembly',
version='0.2.3',
author='Waleed Mebane',
author_email='allsemblyUNDERSCOREdev@waleedmebane.c.m',
zip_safe=False,
package_data={'allsembly': ['py.typed']},
packages=['allsembly'],
scripts=[],
license='LICENSE.txt',
description='Create an online community for anonymous proposal and collaborative evaluation of public policy options, with automated decision support.',
long_description=open('README.md').read(),
python_requires='>=3.7',
install_requires=[
'problog',
'pygraphviz',
'ZODB',
'RPyC',
'persistent',
'transaction',
'cryptography',
'atomic',
'readerwriterlock',
'argon2-cffi',
'python-daemon',
'typing',
'typing_extensions',
'django'],
)