-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·27 lines (27 loc) · 1002 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='yanky',
version='0.9.0',
packages=['yanky'],
package_data={'': ['LICENSE']},
package_dir={'yanky': 'yanky'},
author='Josue Ortega',
author_email='[email protected]',
description='Easy and Simple copy and paste module for GNU/Linux systems',
long_description=open('README', 'rt').read(),
license='MIT',
keywords='yannk copy paste api xsel xclip clipboard',
url='https://github.com/noahfx/yanky',
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers',
],
)