forked from stucchio/Idli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (40 loc) · 1.41 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
from distutils.core import setup
try:
import argparse
except ImportError:
print("Module argparse is required by idl. Please install it and try again.")
try:
import json
except ImportError:
print("Module json is required by idl. Please install it and try again.")
try:
import requests
except ImportError:
print("Module requests is required by idl. Please install it and try again.")
try:
import urllib.request, urllib.parse, urllib.error
import urllib.request, urllib.error, urllib.parse
except ImportError:
print("Modules urllib and urllib2 are required by idl. Please install them and try again.")
setup(name='idli',
version='0.1',
description='Bug tracker interface',
author='Chris Stucchio',
author_email='[email protected]',
license='GPL v3',
url='http://github.com/stucchio/Idli',
classifiers=[
'Development Status :: 3 - Alph',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL V3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Bug Tracking',
],
package_dir = { 'idli' : 'idli' },
packages = ['idli', 'idli.backends'],
scripts = ['scripts/idli',],
)