-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
159 lines (151 loc) · 5.16 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#!/usr/bin/env python
# setup.py
#
# Copyright (C) 2008 Veselin Penev, http://bitdust.io
#
# This file (setup.py) is part of BitDust Software.
#
# BitDust is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# BitDust Software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with BitDust Software. If not, see <http://www.gnu.org/licenses/>.
#
# Please contact us if you have any questions at bitdust.io@gmail.com
from __future__ import absolute_import
from setuptools import setup
setup(
name='bitdust',
version='{version}',
author='Veselin Penev, BitDust',
author_email='bitdust.io@gmail.com',
maintainer='Veselin Penev, BitDust',
maintainer_email='veselin@bitdust.io',
url='https://bitdust.io',
description='p2p secure distributed storage and communication engine',
long_description=open('README.txt', 'r').read(),
long_description_content_type='text/markdown',
download_url='https://bitdust.io',
license='Copyright (C) 2008 Veselin Penev, https://bitdust.io',
keywords='''p2p, peer to peer, backup, restore, storage, data, recover,
distributed, online, python, twisted, messaging, websocket,
encryption, crypto, protection''',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Twisted',
'Intended Audience :: Customer Service',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
],
packages=[
'bitdust',
'bitdust.access',
'bitdust.automats',
'bitdust.blockchain',
'bitdust.broadcast',
'bitdust.chat',
'bitdust.coins',
'bitdust.contacts',
'bitdust.crypt',
'bitdust.currency',
'bitdust.customer',
'bitdust.dht',
'bitdust.interface',
'bitdust.lib',
'bitdust.logs',
'bitdust.main',
'bitdust.p2p',
'bitdust.raid',
'bitdust.services',
'bitdust.storage',
'bitdust.stream',
'bitdust.stun',
'bitdust.supplier',
'bitdust.system',
'bitdust.transport',
'bitdust.transport.http',
'bitdust.transport.proxy',
'bitdust.transport.udp',
'bitdust.transport.tcp',
'bitdust.updates',
'bitdust.userid',
'bitdust_forks',
'bitdust_forks.Bismuth',
'bitdust_forks.CodernityDB',
'bitdust_forks.CodernityDB3',
'bitdust_forks.entangled',
'bitdust_forks.entangled.kademlia',
'bitdust_forks.parallelp',
'bitdust_forks.parallelp.pp',
'bitdust_forks.txrestapi',
'bitdust_forks.txrestapi.txrestapi',
'bitdust_forks.websocket',
],
package_data={
'bitdust': [
'*.txt',
'*.md',
'*.json',
],
'bitdust_forks': [
'bitdust_forks/Bismuth/LICENSE',
'bitdust_forks/Bismuth/README.md',
'bitdust_forks/CodernityDB/README',
'bitdust_forks/entangled/AUTHORS',
'bitdust_forks/entangled/COPYING',
'bitdust_forks/entangled/README',
'bitdust_forks/parallelp/README',
'bitdust_forks/parallelp/pp/AUTHORS',
'bitdust_forks/parallelp/pp/CHANGELOG',
'bitdust_forks/parallelp/pp/COPYING',
'bitdust_forks/parallelp/pp/PKG-INFO',
'bitdust_forks/parallelp/pp/README',
'bitdust_forks/txrestapi/LICENSE',
'bitdust_forks/txrestapi/README.rst',
'bitdust_forks/websocket/LICENSE',
],
},
install_requires=[
'Twisted==20.3.0',
'zope.interface',
'cryptography',
'pycryptodomex',
'service_identity',
'pyparsing',
'appdirs',
'psutil',
'cffi',
'six',
'virtualenv',
],
scripts=[
'scripts/bitdust',
'scripts/bitdust_worker',
],
)