-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.17 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
# -*- coding: utf-8 -*-
import setuptools
import jobtimize
setuptools.setup(
name = "Jobtimize",
packages = ["jobtimize", "jobtimize/scrapers"],
version = jobtimize.__version__,
install_requires = ["beautifulsoup4", "pandas", "jsonschema", "lxml", "requests"],
author = "Loïc Rakotoson",
author_email = "[email protected]",
url = "https://loicrakotoson.com/Jobtimize/",
description = "Collect and standardize data on job posting platforms.",
long_description = open("README.md", encoding="utf8").read(),
long_description_content_type = "text/markdown",
license = "MIT",
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
"Topic :: Database",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Operating System :: OS Independent"
],
python_requires='>=3.6'
)