-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 1.16 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="crun-py",
version="0.0.5",
author="Snehashis Sarkar",
author_email="[email protected]",
description="C Programming Simplified",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://get-crun.github.io/",
project_urls={
"GitHub repository": "https://github.com/snehashis365/cRun-py",
},
packages=["cRun_py"],
install_requires=[
"windows-curses >= 2.0;platform_system=='Windows'", "tqdm"
],
include_package_data=True,
entry_points={
"console_scripts": [
"cRun-py=cRun_py.cRun:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Android",
],
python_requires='>=3.6',
)