-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.08 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
# Copyright 2019 Francesco Apruzzese <cescoap@gmail.com>
# License GPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from setuptools import setup
setup(
name='solan',
version='0.1.1',
description='Solan',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/OpenCode/solan',
author='Francesco Apruzzese',
author_email='cescoap@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: '
'GNU Affero General Public License v3 or later (AGPLv3+)',
'Topic :: Communications :: File Sharing',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='solan share sharing lan',
license='AGPL',
packages=['solan'],
install_requires=[
'click',
'pyngrok',
],
entry_points={
'console_scripts': ['solan=solan.core:run'],
},
include_package_data=True,
zip_safe=False,
)