1 Star 0 Fork 25

cherry_wb / django-idcops

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
decbe 提交于 2020-02-16 15:59 . update setup.py
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
import setuptools
from distutils.core import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
def get_requirements():
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
requirements_list = [req.strip() for req in f.readlines()]
return requirements_list
setup(
name='django-idcops',
version='2.0',
packages=['idcops',
'idcops.lib',
'idcops.static',
'idcops.templates',
'idcops.migrations',
'idcops.templatetags'],
include_package_data=True,
license='BSD License',
description='A data center inventory management software',
long_description=README,
url='https://www.iloxp.com/',
author='Vivian Cheung',
author_email='wenvki@gmail.com',
install_requires=get_requirements(),
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.x',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)
Python
1
https://gitee.com/cherry_wb/django-idcops.git
git@gitee.com:cherry_wb/django-idcops.git
cherry_wb
django-idcops
django-idcops
master

搜索帮助