-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (48 loc) · 1.56 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
# setup.py
import platform
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name="pymodins",
version="2.2.0",
packages=find_packages(),
install_requires=[
"rich"
],
entry_points={
"console_scripts": [
"pymodins=pymodins.__main__:main",
"pymodins-creator=pymodins.installer:creator"
],
},
author="Nandhan K",
author_email="[email protected]",
description="A Python module installer for newcomers and seasoned developers.",
keywords=[
"Python Module Installer",
"Python Package Installer",
"pymodins",
"Nandhan K",
],
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/Nandhan-KA/pymodins",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Environment :: Win32 (MS Windows)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires='>=3.6',
platforms=["win32", "linux"],
)