-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 928 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 928 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
27
28
import setuptools
#with open("README.md", "r") as fh:
# long_description = fh.read()
setuptools.setup(
name = "ghsu",
version = "0.1.0",
author = "Karime Maamari",
author_email = "maamari@usc.edu",
description = ("An automated Github account setup tool."),
license = "MIT",
keywords = "github account setup",
url = "http://packages.python.org/ghsu",
packages=['ghsu'],
#long_description=long_description,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
python_requires='>=3.6',
install_requires=["selenium>=4.3.0",
"webdriver_manager>=3.8.2"],
entry_points={
'console_scripts': ['ghsu = ghsu.ghsu:main', 'ghsussh = ghsu.ghsu:set_ssh', 'ghsurepo = ghsu.ghsu:create_repo'],
}
)