This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
62 lines (59 loc) · 2.31 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
from setuptools import setup, find_packages
readme_file = open("README.md", "r").read()
setup(
name="py_everything",
version="2.3.0",
description="A python module containing all the basic functions and classes for python but doesn't stop at that, goes beyond advanced. From simple addition to advanced file encryption.",
long_description=readme_file,
long_description_content_type="text/markdown",
author="PyBash",
maintainer="PyBash",
packages=find_packages(),
entry_points={
"console_scripts": [
"setupPyGen = py_everything.setupPyGen:main",
"gitIt = py_everything.gitIt:main",
]
},
install_requires=[
"requests",
"playsound",
"setuptools",
"wheel",
"pip",
"enrocrypt",
"py-expression-eval",
],
license="MIT License",
url="https://github.com/pybash1/py_everything",
download_url="https://pypi.org/project/py-everything/#files",
project_urls={
"Documentation": "https://py_everything.readthedocs.io/en/stable/",
"Issues": "https://github.com/pybash1/py_everything/issues",
"Code": "https://github.com/pybash1/py_everything/",
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: Implementation :: CPython",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Communications :: Email",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Security :: Cryptography",
"Topic :: Utilities",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Archiving :: Packaging",
"Topic :: Software Development :: Code Generators",
],
python_requires=">=3.6",
)