forked from nyamba/spoj
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (39 loc) · 1.08 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
import os
from setuptools import setup, find_packages
name = 'spojcmd'
version = '0.3'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = name,
version = version,
author = "Rachit Nimavat",
author_email = "[email protected]",
description = ("command line tool for spoj.com "),
license = "BSD",
keywords = "spoj problems command line algorithmic problems",
url = "http://github.com/tvanicraath/spojcmd",
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
long_description=read('README'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Topic :: Education",
"Intended Audience :: Customer Service",
],
install_requires=[
'setuptools',
'prettytable',
'argparse>=1.2.1',
'requests>=1.1.0',
'BeautifulSoup>=3.2.1',
],
entry_points={
'console_scripts': [
'spojcmd = spojcmd.main:runner',
]
},
)