forked from blavejr/OrganiseDesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 977 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
if sys.version_info < (2,):
sys.exit("Python 1 is not supported...")
with open('README.rst') as f:
longd = f.read()
setup(
name='OrganiseDesktop',
include_package_data=True,
packages=["os", "getpass", "time","sys","tkinter", "json"],
data_files=[('OrganiseDesktop', ['OrganiseDesktop/user_agents.txt'])],
entry_points = {"console_scripts": ['socli = socli.socli:main']},
install_requires=['BeautifulSoup4','requests','colorama','Py-stackExchange', 'urwid'],
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"+longd
)