forked from KoffeinFlummi/puush-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 935 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
#!/usr/bin/env python3
import os
import sys
import platform
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "puush",
version = "1.0",
packages = [],
scripts = ["scripts/puush"],
install_requires = ["docopt", "requests", "notify2"],
author = "Felix \"KoffeinFlummi\" Wiegand",
author_email = "[email protected]",
description = "Python implementation of puush. For Linux.",
long_description = read("README.md"),
license = "MIT",
keywords = "screenshot cloud images image",
url = "https://github.com/KoffeinFlummi/puush-linux",
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture",
"Topic :: Utilities"
]
)