-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.12 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
# Copyright (c) 2022. 保留所有权利.
# 项目 - py_cppstd ==> ==> ==> ==> ==> ==> ==> ==> ==> =>>
# @Author : Cyan Changes(DELL)
# @Email : [email protected] | [email protected]
# @Edit : 2022/7/26 上午11:03
# @File : setup.py
# @CorpTime: 2022/7/26 上午11:16
from setuptools import find_packages, setup
setup(
name='py_cppstd',
version='0.3.3',
description='Use C++ std::iostream style output',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author='Cyan_Changes',
author_email='[email protected]',
maintainer='Cyan_Changes',
maintainer_email='[email protected]',
license='Apache 2.0',
packages=find_packages(),
platforms=['all'],
requires=['executing', "objprint"],
url='https://github.com/Chinese-Cyq20100313/py_cppstd',
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython"
]
)