forked from syabruk/pync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
file_contents = []
for file_name in ('README.md',):
path = os.path.join(os.path.dirname(__file__), file_name)
file_contents.append(open(path).read())
long_description = '\n\n'.join(file_contents)
terminal_notifier_files = []
for root, dirs, files in os.walk('pync/vendor/'):
root = '/'.join(root.split('/')[1:])
for f in files:
terminal_notifier_files.append(os.path.join(root, f))
setup(name = 'pync',
version = "1.6.1",
description = 'Python Wrapper for Mac OS 10.8 Notification Center',
long_description = long_description,
author = 'Vladislav Syabruk',
author_email = '[email protected]',
url = 'https://github.com/setem/pync',
download_url = 'https://github.com/SeTeM/pync/archive/v1.6.1.zip',
license = "MIT",
platforms = "MacOS X",
keywords = "mac notification center wrapper",
zip_safe = True,
include_package_data = True,
install_requires = [
'python-dateutil>=2.0'
],
packages = find_packages(),
classifiers = [
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)