-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 989 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 989 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
29
30
31
32
33
34
35
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="pytrendx",
version="1.3.0",
description="Fetch and visualize PyPI package download trends directly from the terminal.",
long_description=long_description,
long_description_content_type="text/markdown",
author="kaede",
license="MIT",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"VersaLog",
"pypistats",
"matplotlib",
"numpy",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"ptx = pytrendx.main:PstatsGet"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Intended Audience :: Developers",
],
)