-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (45 loc) · 1.3 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
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
version = '0.0.3'
setup(
name='pickleclip',
packages=find_packages(exclude=['tests']),
package_data={
'pickleclip': [],
},
install_requires=[
'pyperclip>=1.5.27',
'six>=1.10.0',
'dill>=0.2.6'
],
zip_safe=False,
version=version,
description='Simple clipboard tool for Python pickled objects.',
author='Victor Ferraz',
author_email='victorfsf.dev@gmail.com',
url='https://github.com/victorfsf/pickleclip',
keywords=[
'pickle',
'pickleclip',
'clipboard',
'clip',
'python',
'python2',
'python3',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)