-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (62 loc) · 2.07 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
Modified by Madoshakalaka@Github (dependency links added)
"""
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="bamboodle",
version="0.1.0",
description="Retrieve session cookies from a bamboohr session",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sw1nn/bamboodle",
author="Neale Swinnerton",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
],
keywords="bamboo",
packages=find_packages(where="src", exclude=["contrib", "docs", "tests"]),
package_dir={"": "src"},
entry_points={"console_scripts": ["bamboodle = bamboodle.cookie:main"]},
python_requires=">=3.10",
install_requires=[
"async-generator==1.10",
"attrs==22.2.0",
"certifi==2022.12.7",
"charset-normalizer==3.0.1",
"h11==0.14.0",
"idna==3.4",
"outcome==1.2.0",
"pexpect==4.8.0",
"ptyprocess==0.7.0",
"pysocks==1.7.1",
"requests==2.28.2",
"selenium==4.8.0",
"sniffio==1.3.0",
"sortedcontainers==2.4.0",
"trio==0.22.0",
"trio-websocket==0.9.2",
"urllib3==1.26.14",
"wsproto==1.2.0"
],
extras_require={"dev": []},
dependency_links=[],
project_urls={
"Bug Reports": "https://github.com/sw1nn/bamboodle/issues",
"Funding": "https://donate.pypi.org",
"Say Thanks!": "http://saythanks.io/to/example",
"Source": "https://github.com/sw1nn/bamboodle/",
},
)