This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
45 lines (43 loc) · 1.59 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
#!/usr/bin/env python
from setuptools import setup
from drogulus.version import get_version
with open('README.rst') as f:
readme = f.read()
with open('CHANGES.rst') as f:
changes = f.read()
setup(
name='drogulus',
version=get_version(),
description=' '.join(['A peer-to-peer data store built for simplicity,'
'security, openness and fun.']),
long_description=readme + '\n\n' + changes,
author='Nicholas H.Tollervey',
author_email='[email protected]',
url='http://drogul.us/',
package_dir={'drogulus': 'drogulus'},
package_data={'': ['ACCORD', 'AUTHORS', 'README.rst', 'CHANGES.rst',
'LICENSE', 'UNLICENSE', 'WAIVER']},
packages=['drogulus', 'drogulus.contrib', 'drogulus.net',
'drogulus.commands', 'drogulus.dht'],
license='Public Domain',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: Public Domain',
'Programming Language :: Python :: 3.3',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: System :: Distributed Computing',
],
install_requires=['aiohttp', 'rsa', 'cliff', 'pyscrypt'],
entry_points={
'console_scripts': ['drogulus=drogulus.drogulus:main'],
'drogulus.commands': [
'keygen = drogulus.commands.keygen:KeyGen',
'whoami = drogulus.commands.whoami:WhoAmI',
'start = drogulus.commands.start:Start',
],
}
)