Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
a26990a2
提交
a26990a2
authored
11月 16, 2020
作者:
Brandon T. Willard
提交者:
Brandon T. Willard
11月 16, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Refactor setup.py
* Simplify file reading * Use versioneer as designed * Avoid adding the `tests` package
上级
645d7155
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
21 行增加
和
76 行删除
+21
-76
setup.py
setup.py
+21
-76
没有找到文件。
setup.py
浏览文件 @
a26990a2
#!/usr/bin/env python
#
# TODO:
# * Figure out how to compile and install documentation automatically
# * Add download_url
from
setuptools
import
find_packages
,
setup
import
codecs
import
os
from
distutils.util
import
convert_path
from
fnmatch
import
fnmatchcase
import
versioneer
try
:
from
setuptools
import
setup
except
ImportError
:
from
distutils.core
import
setup
import
versioneer
def
read_file
(
filename
):
with
open
(
filename
,
"rt"
)
as
buff
:
return
buff
.
read
()
NAME
=
"Theano-PyMC"
MAINTAINER
=
"PyMC developers"
MAINTAINER_EMAIL
=
"pymc-devs@gmail.com"
DESCRIPTION
=
(
"Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs."
)
LONG_DESCRIPTION
=
read_file
(
"DESCRIPTION.txt"
)
URL
=
"http://deeplearning.net/software/theano/"
LICENSE
=
"BSD"
AUTHOR
=
"pymc-devs"
AUTHOR_EMAIL
=
"pymc-devs@gmail.com"
PLATFORMS
=
[
"Windows"
,
"Linux"
,
"Solaris"
,
"Mac OS-X"
,
"Unix"
]
CLASSIFIERS
=
"""
\
Development Status :: 6 - Mature
Intended Audience :: Education
...
...
@@ -39,65 +41,13 @@ Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
"""
NAME
=
"Theano-PyMC"
MAINTAINER
=
"PyMC developers"
MAINTAINER_EMAIL
=
"pymc-devs@gmail.com"
DESCRIPTION
=
(
"Optimizing compiler for evaluating mathematical "
+
"expressions on CPUs and GPUs."
)
LONG_DESCRIPTION
=
(
codecs
.
open
(
"DESCRIPTION.txt"
,
encoding
=
"utf-8"
)
.
read
()
+
"
\n\n
"
+
codecs
.
open
(
"NEWS.txt"
,
encoding
=
"utf-8"
)
.
read
()
)
URL
=
"http://deeplearning.net/software/theano/"
DOWNLOAD_URL
=
""
LICENSE
=
"BSD"
CLASSIFIERS
=
[
_f
for
_f
in
CLASSIFIERS
.
split
(
"
\n
"
)
if
_f
]
AUTHOR
=
"LISA laboratory, University of Montreal"
AUTHOR_EMAIL
=
"pymc-devs@gmail.com"
PLATFORMS
=
[
"Windows"
,
"Linux"
,
"Solaris"
,
"Mac OS-X"
,
"Unix"
]
def
find_packages
(
where
=
"."
,
exclude
=
()):
out
=
[]
stack
=
[(
convert_path
(
where
),
""
)]
while
stack
:
where
,
prefix
=
stack
.
pop
(
0
)
for
name
in
os
.
listdir
(
where
):
fn
=
os
.
path
.
join
(
where
,
name
)
if
(
"."
not
in
name
and
os
.
path
.
isdir
(
fn
)
and
os
.
path
.
isfile
(
os
.
path
.
join
(
fn
,
"__init__.py"
))
):
out
.
append
(
prefix
+
name
)
stack
.
append
((
fn
,
prefix
+
name
+
"."
))
for
pat
in
list
(
exclude
)
+
[
"ez_setup"
,
"distribute_setup"
]:
out
=
[
item
for
item
in
out
if
not
fnmatchcase
(
item
,
pat
)]
return
out
version_data
=
versioneer
.
get_versions
()
if
version_data
[
"error"
]
is
not
None
:
# Get the fallback version
# We can't import theano.version as it isn't yet installed, so parse it.
fname
=
os
.
path
.
join
(
os
.
path
.
split
(
__file__
)[
0
],
"theano"
,
"version.py"
)
with
open
(
fname
)
as
f
:
lines
=
f
.
readlines
()
lines
=
[
l
for
l
in
lines
if
l
.
startswith
(
"FALLBACK_VERSION"
)]
assert
len
(
lines
)
==
1
FALLBACK_VERSION
=
lines
[
0
]
.
split
(
"="
)[
1
]
.
strip
()
.
strip
(
'"'
)
version_data
[
"version"
]
=
FALLBACK_VERSION
def
do_setup
():
if
__name__
==
"__main__"
:
setup
(
name
=
NAME
,
version
=
version_data
[
"version"
],
version
=
versioneer
.
get_version
(),
cmdclass
=
versioneer
.
get_cmdclass
(),
description
=
DESCRIPTION
,
long_description
=
LONG_DESCRIPTION
,
classifiers
=
CLASSIFIERS
,
...
...
@@ -106,8 +56,7 @@ def do_setup():
url
=
URL
,
license
=
LICENSE
,
platforms
=
PLATFORMS
,
packages
=
find_packages
(),
cmdclass
=
versioneer
.
get_cmdclass
(),
packages
=
find_packages
(
exclude
=
[
"tests.*"
]),
install_requires
=
[
"numpy>=1.9.1"
,
"scipy>=0.14"
],
package_data
=
{
""
:
[
...
...
@@ -145,7 +94,3 @@ def do_setup():
]
),
)
if
__name__
==
"__main__"
:
do_setup
()
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论