-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.17 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
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = ''.join(f.readlines())
setup(
name='distributedchat',
version='0.9.2',
description='.',
long_description=long_description,
author='Petr Klejch',
author_email='[email protected]',
keywords='distributed algorithm,chat,chang roberts',
license='GPL-3.0',
url='https://github.com/pklejch/distributed-chat',
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: Implementation :: CPython',
],
install_requires=['click>=6', 'cryptography'],
setup_requires=['pytest-runner','pytest'],
tests_require=['pytest', 'configparser'],
entry_points={
'console_scripts': [
'distributedchat = distributedchat.chat:main',
],
},
package_data={
'distributedchat': ['keys.cfg','main.ui','startnode.ui']
},
)