-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (29 loc) · 866 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
from setuptools import setup, find_packages
setup(
name='gram-scanner',
version='1.0.2',
description="A command line interface of Ionian University's Gram-Web",
author='Nick Garlis',
author_email='[email protected]',
python_requires='>=3',
url='https://github.com/nickgarlis/gram-scanner',
packages=find_packages(exclude=('bin')),
scripts=['bin/gram-scanner'],
install_requires=[
'bs4',
'click',
'colorama',
'requests'
],
include_package_data=True,
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
],
keywords=['Ionian University', 'Gram-Web' 'gram-scanner']
)