forked from Nandhan-KA/pymodins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1.34 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
import platform
from setuptools import setup, find_packages
if platform.system() == "Windows":
setup(
name="pymodins",
version="2.1.3",
packages=find_packages(),
install_requires=[
"rich"
],
entry_points={
"console_scripts": [
"pymodins=pymodins.installer:run",
"pymodins.creator=pymodins.installer:creator"
],
},
author="Nandhan K",
author_email="[email protected]",
description="A module to install various Python packages.",
keywords=[
"Python Module Installer",
"Python Package Installer",
"python modules installer",
"python package installer",
"Nandhan-KA",
"PYMODINS",
"pymodins"
],
long_description=open('README.md').read(),
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",
],
python_requires='>=3.6',
platforms=["win32"],
)
else:
raise RuntimeError("This program is designed to run on Windows systems only.")