-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
45 lines (41 loc) · 1.25 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
"""setup.py: setuptools control."""
import re
from setuptools import setup
version = re.search(
r'(__version__ = "(\d\.\d(\.\d+)?)")',
open("phdseeker/constants.py", encoding="utf8").read(),
re.M
)[2]
setup(
name="phdseeker",
version=version,
author="Amin Aghababaei, Javad Razavian, Ana Paula Gomes",
author_email="[email protected], [email protected]",
maintainer='Javad Razavian',
maintainer_email="[email protected]",
packages=['phdseeker',],
install_requires=[
'rich',
'http3',
'httpx',
'pandas',
'docopt',
'openpyxl',
'brotlipy',
'bs4',
'urllib3',
],
python_requires=">=3.8",
package_dir={'phdseeker': 'phdseeker'},
description="PhD Seeker is a python web scraper to search for fully funded doctorate positions, advertised on well-known academic position websites.",
license="GPLv3",
keywords="Ph.D. Positions, phdseeker, Academia",
url="https://github.com/Aghababaei/PhD-Seeker",
entry_points={
'console_scripts': [
'phdseeker = phdseeker.phdseeker_cli:main',
],
},
long_description_content_type="text/markdown",
long_description=open("README.md", encoding="utf8").read(),
)