1 Star 0 Fork 2

KeyGen/PyScada

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
clavay 提交于 2023-05-25 15:41 . fix license classifier for pypi
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
from pyscada import core
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Console',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Scientific/Engineering :: Visualization'
]
setup(
author=core.__author__,
author_email="info@martin-schroeder.net",
name='PyScada',
version=core.__version__,
description='A Python and Django based Open Source SCADA System',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='http://www.github.com/pyscada/PyScada',
license='AGPLv3',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'django>=4.2,<4.3',
'numpy>=1.6.0',
'h5py>=2.2.1',
'pillow',
'python-daemon>=2.0.0',
'pytz',
'python-dateutil',
# 'channels',
# 'channels-redis',
'asgiref',
'monthdelta',
'six',
'concurrent-log-handler', # rotating logs for multiprocess
],
packages=find_packages(exclude=["project", "project.*"]),
include_package_data=True,
zip_safe=False,
test_suite='runtests.main'
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/songxp03/PyScada.git
git@gitee.com:songxp03/PyScada.git
songxp03
PyScada
PyScada
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385