-
Notifications
You must be signed in to change notification settings - Fork 78
/
setup.py
31 lines (27 loc) · 1.01 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
from sys import exit, version
import sys
if version < '1.0.0':
print("Python 1 is not supported...")
sys.exit(1)
with open('README.md') as f:
longd = f.read()
setup(
name = 'OrganiseDesktop',
include_package_data = True,
packages = find_packages(),
data_files = [('OrganiseDesktop', ['organise_desktop/Extension.json'])],
entry_points = {'console_scripts': ['organise_desktop = organise_desktop.Cli:main']},
install_requires = [ 'BeautifulSoup4', 'requests','colorama', 'Py-stackExchange', 'urwid', 'crontab'],
requires = ['os', 'getpass', 'time', 'sys', 'tkinter', ],
version = '1.0',
url = 'https://github.com/blavejr/OrganiseDesktop.git',
keywords = "Desktop Organiser",
license = 'MIT',
author = 'Remigius Kalimba',
author_email = '[email protected]',
description = 'Organise your desktop with one click.',
long_description = '\n\n{}'.format(longd)
)