-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (40 loc) · 1.15 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
from setuptools import setup
setup(
name='GimmeThat',
version='3.0',
description='A file transfer tool',
url='https://github.com/nejdetckenobi/gimme-that',
author='nejdetckenobi',
author_email='[email protected]',
license='GPL',
packages=['gimmethat'],
zip_safe=False,
install_requires=[
'flask',
'flask_bootstrap',
'netifaces',
'clamd',
'gunicorn'
],
scripts=[
'bin/gimme',
'bin/gimmeconf'
],
include_package_data=True,
classifiers=[
'License :: OSI Approved :'
': GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Other Audience',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent',
'Topic :: Communications :: File Sharing',
'Topic :: Utilities'
]
)