-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (54 loc) · 1.83 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
from setuptools import setup, find_packages
long_desc = open("README.md").read()
name = 'PyForbes'
repo_slug = 'laxmena/{}'.format(name.lower())
repo_url = 'https://github.com/{}'.format(repo_slug)
setup(
name="pyforbes",
version="1.0.3",
author="laxmena",
author_email="[email protected]",
description="Python package to collect data from Forbes.",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/laxmena/PyForbes",
download_url="https://github.com/laxmena/PyForbes",
project_urls={
"Bug Tracker": "https://github.com/laxmena/PyForbes/issues",
'CI: Circle': 'https://circleci.com/gh/{}'.format(repo_slug),
'GitHub: repo': repo_url,
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
],
install_requires=[
"pandas>=1.1.3",
"numpy",
"requests"
],
extras_require={
'docs': [
'sphinx',
'docutils',
'alabaster',
'setuptools'
]
},
packages=find_packages(include=["pyforbes", "pyforbes.*"]),
python_requires=">=3.6",
license="MIT",
keywords="python forbes api pyforbes",
)