-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 961 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
from setuptools import setup, find_packages
setup(
name='diclipy',
version='0.1.6',
packages=find_packages(),
include_package_data=True,
author='uzver',
author_email='[email protected]',
url='https://notabug.org/uzver/diclipy',
license='GNU/GPLv3+',
description='CLI script for posting/reading/commenting on Diaspora* pod written around Diaspy API',
long_description = open('README.rst').read(),
keywords='diaspora diaspy cli social blog federative network fediverse',
install_requires=['diaspy-api','clap-api'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
'Topic :: Utilities'
],
entry_points = {
'console_scripts': ['diclipy=diclipy.diclipy:main'],
}
)