-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (34 loc) · 966 Bytes
/
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
#!/usr/bin/env python
"""
Bepasty command line client
"""
from setuptools import setup, find_packages
setup(
name='bepasty-client-cli',
version='0.3.0',
packages=find_packages(),
url='https://github.com/bepasty/bepasty-client-cli',
license='BSD 2-clause',
author='Dennis Schmalacker',
author_email='[email protected]',
description='Command Line Client for the Bepasty Pastebin',
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Communications :: File Sharing",
"Topic :: System :: Archiving :: Backup"
],
install_requires=(
'click',
'requests',
'python-magic',
),
entry_points={
'console_scripts': [
'bepasty-cli = bepasty_cli.cli:main'
]
}
)