-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 882 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 882 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name = "LMSA",
version = "0.1.0",
description = "A full service Non-invasive automation framework for the Blackboard LMS system.",
long_description = "",
author = "Samuel McCaffrey",
author_email = "samccaff@asu.edu",
license = "Apache-2",
url = "https://github.com/smccaffrey/lmsa-core",
keywords = "python automation selenium blackboard",
classifiers = [
"Development Status :: Pre-Alpha",
"Enviroment :: Console",
"Intended Audience :: Industry/Academic",
"Operating System :: UNIX",
"Programming Language :: Python 2.7",
],
packages=find_packages('src'),
package_dir={'':'src'},
install_requires=['selenium',
'pandas',
'bs4']
)